aboutsummaryrefslogtreecommitdiffstats
path: root/rcfile_l.l
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1996-10-04 17:58:17 +0000
committerEric S. Raymond <esr@thyrsus.com>1996-10-04 17:58:17 +0000
commit50b3d54cadeda8be3e837358f43e0e9b904d091a (patch)
tree053b6784c6706e60e870986e78c52b1085a7f09d /rcfile_l.l
parentc6a786da423edc936db3d62e00ce2dc06b2e2a44 (diff)
downloadfetchmail-50b3d54cadeda8be3e837358f43e0e9b904d091a.tar.gz
fetchmail-50b3d54cadeda8be3e837358f43e0e9b904d091a.tar.bz2
fetchmail-50b3d54cadeda8be3e837358f43e0e9b904d091a.zip
Restore --mda, with cleaner implementation this time.
svn path=/trunk/; revision=214
Diffstat (limited to 'rcfile_l.l')
-rw-r--r--rcfile_l.l1
1 files changed, 1 insertions, 0 deletions
diff --git a/rcfile_l.l b/rcfile_l.l
index 173042a9..e4c70f93 100644
--- a/rcfile_l.l
+++ b/rcfile_l.l
@@ -30,6 +30,7 @@ user(name)? { return KW_USERNAME; }
pass(word)? { return KW_PASSWORD; }
remote(folder)? { return KW_REMOTEFOLDER; }
smtp(host)? { return KW_SMTPHOST; }
+mda { return KW_MDA; }
keep { yylval.flag = FLAG_TRUE; return KW_KEEP; }
flush { yylval.flag = FLAG_TRUE; return KW_FLUSH; }
fetchall { yylval.flag = FLAG_TRUE; return KW_FETCHALL; }