aboutsummaryrefslogtreecommitdiffstats
path: root/rcfile_l.l
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1996-10-04 21:44:50 +0000
committerEric S. Raymond <esr@thyrsus.com>1996-10-04 21:44:50 +0000
commitdba153ee6173bcc1e526163e7434d8a5915baf0b (patch)
tree2bd68e148356eb2ca2c2ac1c31f6056b7fbb6793 /rcfile_l.l
parentf7fa6d049541c5558289a5e885fc03ee111816e4 (diff)
downloadfetchmail-dba153ee6173bcc1e526163e7434d8a5915baf0b.tar.gz
fetchmail-dba153ee6173bcc1e526163e7434d8a5915baf0b.tar.bz2
fetchmail-dba153ee6173bcc1e526163e7434d8a5915baf0b.zip
RC file syntax change, folder->mailbox, remote->remotename.
svn path=/trunk/; revision=220
Diffstat (limited to 'rcfile_l.l')
-rw-r--r--rcfile_l.l6
1 files changed, 4 insertions, 2 deletions
diff --git a/rcfile_l.l b/rcfile_l.l
index e4c70f93..cba1c5ea 100644
--- a/rcfile_l.l
+++ b/rcfile_l.l
@@ -26,9 +26,11 @@ int prc_lineno = 1;
defaults { return KW_DEFAULTS; }
server { return KW_SERVER; }
proto(col)? { return KW_PROTOCOL; }
-user(name)? { return KW_USERNAME; }
+local(name)? { return KW_LOCALNAME; }
+user(name)? { return KW_REMOTENAME; }
+remote(name)? { return KW_REMOTENAME; }
pass(word)? { return KW_PASSWORD; }
-remote(folder)? { return KW_REMOTEFOLDER; }
+mailbox { return KW_MAILBOX; }
smtp(host)? { return KW_SMTPHOST; }
mda { return KW_MDA; }
keep { yylval.flag = FLAG_TRUE; return KW_KEEP; }