Displaying 12 results from an estimated 12 matches for "mailcheck".
2001 Aug 13
1
[PATCH] Maildir support
...uth support: yes"
diff -ur --exclude=configure openssh-2.9p2/session.c openssh-2.9p2.maildir/session.c
--- openssh-2.9p2/session.c Sun Jun 17 05:40:51 2001
+++ openssh-2.9p2.maildir/session.c Mon Aug 13 14:32:47 2001
@@ -1019,6 +1019,82 @@
}
#endif /* defined(HAVE_GETUSERATTR) */
+void
+do_mailcheck(const char *mailbox)
+{
+ struct stat mailstat;
+
+ if (stat(mailbox, &mailstat) != 0) {
+ debug("Mailcheck failed: %s: %s", mailbox,
+ strerror(errno));
+ return;
+ }
+ /* mbox format mailcheck */
+ if (S_ISREG(mailstat.st_mode)) {
+ if (mailstat.st_size == 0)
+ print...
2010 Aug 29
1
Re: Trouble with libgsm on Mac OS X 10.6.2
...D=501
GROUPS=()
HISTFILE=/Users/panosl/.bash_history
HISTFILESIZE=500
HISTSIZE=500
HOME=/Users/panosl
HOSTNAME=Cormanthor.local
HOSTTYPE=i386
IFS=$' \t\n'
LANG=en_US.UTF-8
LC_ALL=en_US.UTF-8
LC_CTYPE=UTF-8
LINES=66
LOGNAME=panosl
LSCOLORS=ExFxCxDxBxegedabagacad
MACHTYPE=i386-apple-darwin9.0
MAILCHECK=60
MANPATH=/usr/share/man:/usr/local/share/man:/usr/X11/share/man:/usr/local/git/share/man
OLDPWD=/Users/panosl
OPTERR=1
OPTIND=1
OSTYPE=darwin9.0
PATH=/Users/panosl/wine/wine-1.3.1/bin:/opt/subversion/bin:/Users/panosl/.bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/...
2019 Jan 28
2
How to generate .bc file using configure && make on Mac OS X?
...-L./lib/readline -L./lib/glob
-L./lib/tilde -L./lib/sh -save-temps -flto -g -flto
-Wno-parentheses -Wno-format-security -o bash shell.o eval.o y.tab.o
general.o make_cmd.o print_cmd.o dispose_cmd.o execute_cmd.o
variables.o copy_cmd.o error.o expr.o flags.o jobs.o subst.o hashcmd.o
hashlib.o mailcheck.o trap.o input.o unwind_prot.o pathexp.o sig.o
test.o version.o alias.o array.o arrayfunc.o assoc.o braces.o
bracecomp.o bashhist.o bashline.o list.o stringlib.o locale.o
findcmd.o redir.o pcomplete.o pcomplib.o syntax.o xmalloc.o
-lbuiltins -lglob -lsh -lreadline -lhistory -ltermcap -ltilde
lib/i...
2004 May 18
4
mbox folders
I just upgraded to Fedora Core 2 from Fedora Core 1. Discovered that
UW-IMAP was replaced with Cyrus. Not quite ready to switch to that mail
box format so I instead installed dovecot which comes with Fedora Core
2.
The RPM version is: dovecot-0.99.10.4-4
The problem I am having is that it seems to want to put folders in:
~/mail/mail/
I would like the folders to be in:
~/mail/
Currently in
2008 Jan 06
1
tomcat still sees jvm version 1.4.2 in Cent OS 5
...31:*.tgz=00;31:*.arj=00;31:*.taz=00;31:*.lzh=00;31:*.zip=00;31:*.z=00;31:*.Z=00;31:*.gz=00;31:*.bz2=00;31:*.bz=00;31:*.tz=00;31:*.rpm=00;31:*.cpio=00;31:*.jpg=00;35:*.gif=00;35:*.bmp=00;35:*.xbm=00;35:*.xpm=00;35:*.png=00;35:*.tif=00;35:'
MACHTYPE=i686-redhat-linux-gnu
MAIL=/var/spool/mail/root
MAILCHECK=60
OPTERR=1
OPTIND=1
OSTYPE=linux-gnu
PATH=/usr/kerberos/sbin:/usr/kerberos/bin:/usr/lib/jvm/java-1.5.0-sun-1.5.0.13/jre/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin
i have tried restarting tomcat many times to no avail and there isn't anything that useful in it...
2013 Dec 19
4
Why I get this message " You have new mail in /var/spool/mail/root " ?
Hi,
Why I get this message " You have new mail in /var/spool/mail/root " in CentOs?
My queries are the following -
1. Why this is generated ?
2. How to disable this ?
3. Is this system generated ?
4. Is this message gain any importance ?
Thanks,
Norah Jones
2008 Mar 02
1
Wrong uptodate
...=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.avi=01;35:*.fli=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.ogg=01;35:*.mp3=01;35:*.wav=01;35:'
LS_OPTIONS=--color=auto
MACHTYPE=i386-pc-linux-gnu
MAIL=/var/mail/root
MAILCHECK=60
OLDPWD=/export/opt
OPTERR=1
OPTIND=1
OSTYPE=linux-gnu
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/bin/X11
PIPESTATUS=([0]="0")
PPID=23385
PS1='\h:\w\$ '
PS2='> '
PS4='+ '
PWD=/etc/cron.daily
SHELL=/bin/bash
SHELLOPTS=braceexpand:ema...
2019 Jan 28
2
How to generate .bc file using configure && make on Mac OS X?
> On macOS you just omit the '-fuse-ld=gold' and it will work out of the box.
> > ./configure CC=clang RANLIB=llvm-ranlib CFLAGS=-flto
> > LDFLAGS=-Wl\,-plugin-opt=save-temps\ -flto\ -fuse-ld=gold
> > make
No. It doesn't work on Mac OS by just omitting '-fuse-ld=gold'.
$ ../../../extract/bash-5.0/configure CC=clang CXX=clang++
RANLIB=llvm-ranlib
2001 May 16
1
wine-20010510 fails to run?
...1;31:*.bz2=01;31:*.bz=01;31:*.tz=01;31:*.rpm=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.xbm=01;35:*.xpm=01;35:*.png=01;35:*.tif=01;35:*.tiff=01;35:'
LS_OPTIONS='-F --color=auto'
LTDL_LIBRARY_PATH=/usr/lib
MACHTYPE=i586-mandrake-linux-gnu
MAIL=/var/spool/mail/jussij
MAILCHECK=60
META_CLASS=PowerPack
NLSPATH=/usr/share/locale/%l/%N
OPTERR=1
OPTIND=1
OSTYPE=linux-gnu
PATH=/usr/X11R6/bin:/usr/local/bin:/bin:/usr/bin:/usr/X11R6/bin:/usr/games
PIPESTATUS=([0]="1")
PPID=890
PREVLEVEL=N
PS1='[\u@\h \W]\$ '
PS2='> '
PS4='...
2004 Jan 22
1
PROBLEM: Filesystem became readonly, then kernel crashes on shutdown
...m=01;31:*.deb=01;31:*.z=01;31:*.Z=01;31:*.gz=01;31:*.jpg=01;35:*.gif
=01;35:*.bmp=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*
.mpg=01;35:*.avi=01;35:*.mov=01;35:'
LS_OPTIONS=' --color=always -F -b -T 0'
MACHTYPE=i486-slackware-linux-gnu
MAIL=/var/spool/mail/mike
MAILCHECK=60
MANPATH=/usr/local/man:/usr/man:/usr/X11R6/man:/usr/lib/java/man:/usr/share/texm
f/man
MINICOM='-c on'
OLDPATH=/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin:/usr/games:/opt/www/htdig/bi
n:/usr/lib/java/bin:/usr/lib/java/jre/bin:/usr/share/texmf/bin:.:/home/mike/bin
OLD_LD_LIBRARY_PATH=
OPT...
2006 May 18
0
R-devel and PGI 6.0 compile error
...:*.tgz=00;31:*.arj=00;31:*.taz=00;31:*.lzh=00;31:*.zip=00;31:*.z=00;31:*.Z=00;31:*.gz=00;31:*.bz2=00;31:*.bz=00;31:*.tz=00;31:*.rpm=00;31:*.cpio=00;31:*.jpg=00;35:*.gif=00;35:*.bmp=00;35:*.xbm=00;35:*.xpm=00;35:*.png=00;35:*.tif=00;35:'
MACHTYPE=x86_64-redhat-linux-gnu
MAIL=/var/spool/mail/gilp
MAILCHECK=60
MANPATH=/usr/local/pgi/linux86-64/6.0/man:/
MOABHOMEDIR=/usr/local/moab
OLDPWD=/home/mfa/gilp/toolchain/R/clusterPGI
OPTERR=1
OPTIND=1
OSTYPE=linux-gnu
PADI_CLEANUP=cleanup.simple.server
PADI_STARTUP=simple.server
PATH=/usr/local/bin:/home/mfa/gilp/Mybin:/home/mfa/gilp/bin-cluster:/apps/bin:/usr...
2007 Jan 22
5
Problem with xen on Centos-4.4?
I am running a Xen installation on a Centos-4.4 based test box, my desktop
unit, and I am having intermittent problems installing certain pieces of
software. Some time back I posted to this list regarding my inability to
install Adobe Acrobat on this unit and was advised to essentially
repackage the software and try again. This is beyond my present means of
knowledge or time to acquire same and