diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2001-03-03 21:04:30 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2001-03-03 21:04:30 +0000 |
commit | 59f9b53799063574462dae2a34ebf34a89bc8bbf (patch) | |
tree | 55923b88bf9631fe19d38670a707fd2b5a44c60c /rcfile_y.y | |
parent | f6ef1ccd435fcb05c3d13086b0227741ff1dbba8 (diff) | |
download | fetchmail-59f9b53799063574462dae2a34ebf34a89bc8bbf.tar.gz fetchmail-59f9b53799063574462dae2a34ebf34a89bc8bbf.tar.bz2 fetchmail-59f9b53799063574462dae2a34ebf34a89bc8bbf.zip |
Added sslproto.
svn path=/trunk/; revision=3183
Diffstat (limited to 'rcfile_y.y')
-rw-r--r-- | rcfile_y.y | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -73,7 +73,7 @@ extern char * yytext; %token NO KEEP FLUSH FETCHALL REWRITE FORCECR STRIPCR PASS8BITS %token DROPSTATUS DROPDELIVERED %token DNS SERVICE PORT UIDL INTERVAL MIMEDECODE IDLE CHECKALIAS -%token SSL SSLKEY SSLCERT +%token SSL SSLKEY SSLCERT SSLPROTO %token PRINCIPAL %% @@ -330,6 +330,7 @@ user_option : TO localnames HERE | SSL {current.use_ssl = FLAG_TRUE;} | SSLKEY STRING {current.sslkey = xstrdup($2);} | SSLCERT STRING {current.sslcert = xstrdup($2);} + | SSLPROTO STRING {current.sslproto = xstrdup($2);} | NO KEEP {current.keep = FLAG_FALSE;} | NO FLUSH {current.flush = FLAG_FALSE;} |