aboutsummaryrefslogtreecommitdiffstats
path: root/rcfile_y.y
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1996-12-09 04:17:32 +0000
committerEric S. Raymond <esr@thyrsus.com>1996-12-09 04:17:32 +0000
commite85820eaf58dac8bd6494336991dcdc91f6ccf45 (patch)
tree7618dfb835bc4c51d2303facabe175df59052d9a /rcfile_y.y
parent0ad6312ee5da744b9d38ae8153d15dbb8cb6c4af (diff)
downloadfetchmail-e85820eaf58dac8bd6494336991dcdc91f6ccf45.tar.gz
fetchmail-e85820eaf58dac8bd6494336991dcdc91f6ccf45.tar.bz2
fetchmail-e85820eaf58dac8bd6494336991dcdc91f6ccf45.zip
Added the `envelope' option.
svn path=/trunk/; revision=615
Diffstat (limited to 'rcfile_y.y')
-rw-r--r--rcfile_y.y3
1 files changed, 2 insertions, 1 deletions
diff --git a/rcfile_y.y b/rcfile_y.y
index 725a7587..ed9e9223 100644
--- a/rcfile_y.y
+++ b/rcfile_y.y
@@ -42,7 +42,7 @@ static void prc_reset();
}
%token DEFAULTS POLL SKIP AKA PROTOCOL AUTHENTICATE TIMEOUT KPOP KERBEROS
-%token USERNAME PASSWORD FOLDER SMTPHOST MDA LIMIT
+%token ENVELOPE USERNAME PASSWORD FOLDER SMTPHOST MDA LIMIT
%token IS HERE THERE TO MAP WILDCARD
%token SET BATCHLIMIT LOGFILE
%token <proto> PROTO
@@ -107,6 +107,7 @@ serv_option : AKA alias_list
| AUTHENTICATE PASSWORD {current.authenticate = A_PASSWORD;}
| AUTHENTICATE KERBEROS {current.authenticate = A_KERBEROS;}
| TIMEOUT NUMBER {current.timeout = $2;}
+ | ENVELOPE STRING {current.envelope = xstrdup($2);}
;
/*