search for: check_mail

Displaying 5 results from an estimated 5 matches for "check_mail".

Did you mean: check_fail
2001 Mar 03
0
[PATCH] PrintLastLog option
...ot; -- NEAR tech -------------- next part -------------- Index: servconf.h --- servconf.h.prev +++ servconf.h Thu Feb 22 20:59:45 2001 @@ -52,4 +52,5 @@ * for RhostsRsaAuth */ int print_motd; /* If true, print /etc/motd. */ + int print_lastlog; /* If true, print lastlog */ int check_mail; /* If true, check for new mail. */ int x11_forwarding; /* If true, permit inet (spoofing) X11 fwd. */ Index: servconf.c --- servconf.c.prev +++ servconf.c Thu Feb 22 20:59:45 2001 @@ -56,4 +56,5 @@ initialize_server_options(ServerOptions options->ignore_user_known_hosts = -1; option...
2012 Sep 17
1
ClamAV Problem
...t 2, output="LibClamAV Error: cl_cvdhead: Can't read CVD header in /var/clamav/daily.cld\nLibClamAV Error: cli_loaddbdir(): error parsing header of /var/clamav/daily.cld\nERROR: Malformed database" at (eval 100) line 596. Sep 17 16:15:44 neumann amavis[8836]: (08836-02) (!!)TROUBLE in check_mail: virus_scan FAILED: AV: ALL VIRUS SCANNERS FAILED Sep 17 16:15:44 neumann amavis[8836]: (08836-02) (!)PRESERVING EVIDENCE in /var/amavis/tmp/amavis-20120917T161537-08836 Sep 17 16:15:44 neumann amavis[8835]: (08835-03) (!)run_av (ClamAV-clamscan) FAILED - unexpected exit 2, output="LibClamAV E...
2001 Apr 13
0
Problem with tar file links
...store tar file \chico\usr\local\sh\old\msgout of size 10930 bytes restore tar file \chico\usr\local\sh\old\check_usr2 of size 11700 bytes tar: Removing leading `/' from link names restore tar file \chico\usr\local\sh\old\update_aliases of size 5226 bytes restore tar file \chico\usr\local\sh\old\check_mail of size 4716 bytes restore tar file \chico\usr\local\sh\old\traffic_rpt of size 6181 bytes this tar file appears to contain some kind of link other than a GNUtar Longlink - ignoring Skipping \chico\usr\local\sh\old\etr30... restore tar file \chico\usr\local\sh\old\etr30 of size 6181 bytes checksum...
2006 Dec 28
3
NET::IMAP / Runner problems
Hello, I have a runner script that is meant to check a mailbox using imap and insert them into the application. The method I am using to do this was taken directly off the rails wiki: require ''net/imap'' # above the class, not within it def self.check_mail imap = Net::IMAP.new(''localhost'') imap.authenticate(''LOGIN'', ''username'', ''password'') imap.select(''INBOX'') imap.search([''ALL'']).each do |message_id| msg = imap.fetch(mess...
2001 Aug 13
1
[PATCH] Maildir support
...AILDIR, pw->pw_name); + } +#endif child_set_env(&env, &envsize, "MAIL", buf); - /* Normal systems set SHELL by default. */ child_set_env(&env, &envsize, "SHELL", shell); } @@ -1471,19 +1561,12 @@ */ if (s->ttyfd != -1 && options.check_mail) { char *mailbox; - struct stat mailstat; - mailbox = getenv("MAIL"); if (mailbox != NULL) { - if (stat(mailbox, &mailstat) != 0 || - mailstat.st_size == 0) - printf("No mail.\n"); - else if (mailstat.st_mtime < mailstat.st_atime) -...