search for: opena

Displaying 2 results from an estimated 2 matches for "opena".

Did you mean: open
2017 May 12
0
sshd and problems with network vs NetworkManager
...t ListenAddress=0.0.0.0 --> ok 6) If NetworkManager disabled and using only network service and I put ListenAddress=ip and comment out the RestartPreventExitStatus line --> ko with 255 error and after 42s restart and ok of sshd Can anyone replicate on an RH EL and report? Do you think I can opena a bugzilla for this or NetworkManager is supposed to be kept running as official support? I have a server with two network interfaces where I want to enable sshd only on the second and I'm blocked if I disable NetworkManager. In the mean time I have commented out the service line related to re...
2006 Jul 05
2
Procmail patch for dovecot delivery
...:0 $DEFAULT -------------- next part -------------- diff -Nur procmail-3.22-orig/src/mailfold.c procmail-3.22/src/mailfold.c --- procmail-3.22-orig/src/mailfold.c 2001-09-11 06:58:34.000000000 +0200 +++ procmail-3.22/src/mailfold.c 2006-07-05 20:32:22.000000000 +0200 @@ -191,9 +191,107 @@ return opena(buf); } -int writefolder(boxname,linkfolder,source,len,ignwerr,dolock) - char*boxname,*linkfolder;const char*source;long len;const int ignwerr,dolock; +int isyes(const char* s) +{ + int result = 0; + char* env = getenv(s); + if (env) + { + result = !strcmp(env, "yes"); + } + r...