aboutsummaryrefslogtreecommitdiffstats
path: root/m4-local
Commit message (Expand)AuthorAgeFilesLines
* Fix gethostbyname_r argument count detection, ...Matthias Andree2010-04-291-0/+3
* Fix autoconf warning, rename variable to allow caching.Matthias Andree2010-04-291-8/+8
* Move gethostbyname_r.m4 to m4-local directory where it belongs.Matthias Andree2010-04-291-0/+68
* Remove autobuild support.Matthias Andree2009-05-041-34/+0
* Add rudimentary autobuild support.Matthias Andree2005-11-271-0/+34
* Portability fix: Solaris' /bin/sh does not support if ! test ...,Matthias Andree2005-11-181-1/+1
* Fixes to --with-hesiod option. Sunil Shetye.Matthias Andree2005-09-111-3/+6
* Ship m4-local from top-level Makefile rather than recursing for two stupid fi...Matthias Andree2005-07-311-2/+0
* Re-add the m4-local directory, in case we need to add more macros in the futu...Graham Wilson2004-11-123-0/+164
* Kill m4-local directory, move the two files to top-level directory.Matthias Andree2004-06-263-164/+0
* Reset LIBS/LDFLAGS/CPPFLAGS/CFLAGS before trying next path prefix.Matthias Andree2004-06-201-0/+5
* Fix HESIOD compile failure on FreeBSD 5-CURRENT,Matthias Andree2004-06-203-0/+159
ight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
#	~/.bash_login
#

#	Start Fetchmail up when I Login.
#
#	TDEV=my PRESENT terminal device IE: ttyp2, tty5, ....
#
export TDEV=`tty | sed -n -e "s#/dev/##p"`
#
if [ ! -s ~/.fetchmail ]; then
    /usr/local/bin/fetchmail -d 300
    echo "owner" >.fetchmail.$TDEV
else
    echo "notowner" >.fetchmail.$TDEV
fi
# END of Fetchmail startup