aboutsummaryrefslogtreecommitdiffstats
path: root/rcfile_y.y
diff options
context:
space:
mode:
Diffstat (limited to 'rcfile_y.y')
-rw-r--r--rcfile_y.y5
1 files changed, 3 insertions, 2 deletions
diff --git a/rcfile_y.y b/rcfile_y.y
index ccde88e8..32c5b244 100644
--- a/rcfile_y.y
+++ b/rcfile_y.y
@@ -29,7 +29,7 @@ int yydebug; /* in case we didn't generate with -- debug */
char *sval;
}
-%token SERVER PROTOCOL LOCALNAME USERNAME PASSWORD FOLDER SMTPHOST MDA DEFAULTS
+%token SERVER PROTOCOL USERNAME PASSWORD FOLDER SMTPHOST MDA DEFAULTS IS HERE
%token <proto> PROTO
%token <sval> STRING
%token <flag> KEEP FLUSH FETCHALL REWRITE PORT SKIP
@@ -84,7 +84,8 @@ user1opts : user_option
| user1opts user_option
;
-user_option : LOCALNAME STRING {prc_setlocal($2);}
+user_option : IS STRING {prc_setlocal($2);}
+ | IS STRING HERE {prc_setlocal($2);}
| PASSWORD STRING {prc_setpassword($2);}
| FOLDER STRING {prc_setfolder($2);}
| SMTPHOST STRING {prc_setsmtphost($2);}