aboutsummaryrefslogtreecommitdiffstats
path: root/sample.rcfile
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1997-01-14 22:28:16 +0000
committerEric S. Raymond <esr@thyrsus.com>1997-01-14 22:28:16 +0000
commit70dcc659b0d246e0fd2879d06400c287b8638f42 (patch)
tree8284d6e99ce5457ed5de92461b35d6609a1d1e1b /sample.rcfile
parent7b9142f1429d1dd50efa2251239de70a66e82c3c (diff)
downloadfetchmail-70dcc659b0d246e0fd2879d06400c287b8638f42.tar.gz
fetchmail-70dcc659b0d246e0fd2879d06400c287b8638f42.tar.bz2
fetchmail-70dcc659b0d246e0fd2879d06400c287b8638f42.zip
Change `interface' and `monitor' options to per-server.
svn path=/trunk/; revision=762
Diffstat (limited to 'sample.rcfile')
-rw-r--r--sample.rcfile16
1 files changed, 9 insertions, 7 deletions
diff --git a/sample.rcfile b/sample.rcfile
index d9822f01..c6da6f4b 100644
--- a/sample.rcfile
+++ b/sample.rcfile
@@ -28,6 +28,8 @@
# envelope -- must be followed by an envelope header name
# aka -- must be followed by one or more server aliases
# localdomains -- must be followed by one or more domain names
+# interface -- must be followed by device/IP address/mask
+# monitor -- must be followed by IP address
#
# username (or user) -- must be followed by a name
# is -- must be followed by one or more names
@@ -63,8 +65,6 @@
#
# set batchlimit = -- must be followed by a number
# set logfile = -- must be followed by a string
-# set interface = -- must be followed by IP address
-# set monitor = -- must be followed by IP address
#
# The noise keywords `and', `with', `has', `wants', and `options' are ignored
# anywhere in an entry; they can be used to make it resemble English. The
@@ -76,18 +76,20 @@
# This is what the developer's .fetchmailrc looks like:
set batchlimit = 0 # I forward to sendmail
-set interface = sl0/10.0.2.15 # SLIRP's default IP address
-defaults password not_blowing_my_cover;
+defaults
+ interface "sl0/10.0.2.15" # SLIRP standard address
+ user esr is esr fetchmail-friends magic-numbers here
+ fetchall
# Use this for production
poll locke.ccil.org with protocol APOP:
- user esr there with password my_apop_secret is esr here;
+ password my_apop_secret;
# Use this to test IMAP
skip locke protocol IMAP:
- user esr here is esr there;
+ password my_remote_password;
# Use this to test against POP2 using a local server
skip localhost protocol pop2:
- user esr here is esr there;
+ password my_local_password;