From a016460027f89e7c81106a0560d1d495f727c182 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Sun, 10 Mar 2002 19:59:59 +0000 Subject: Expose the ESMTP name and password options. svn path=/trunk/; revision=3596 --- rcfile_y.y | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'rcfile_y.y') diff --git a/rcfile_y.y b/rcfile_y.y index 7701d2c4..a85a7fa0 100644 --- a/rcfile_y.y +++ b/rcfile_y.y @@ -74,7 +74,7 @@ extern char * yytext; %token DROPSTATUS DROPDELIVERED %token DNS SERVICE PORT UIDL INTERVAL MIMEDECODE IDLE CHECKALIAS %token SSL SSLKEY SSLCERT SSLPROTO SSLCERTCK SSLCERTPATH SSLFINGERPRINT -%token PRINCIPAL +%token PRINCIPAL ESMTPNAME ESMTPPASSWORD %token TRACEPOLLS %% @@ -157,6 +157,8 @@ serv_option : AKA alias_list #endif /* INET6_ENABLE */ } | PRINCIPAL STRING {current.server.principal = xstrdup($2);} + | ESMTPNAME STRING {current.server.esmtp_name = xstrdup($2);} + | ESMTPPASSWORD STRING {current.server.esmtp_password = xstrdup($2);} | PROTOCOL SDPS { #ifdef SDPS_ENABLE current.server.protocol = P_POP3; -- cgit v1.2.3