diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2010-02-24 23:03:22 +0100 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2010-02-24 23:03:22 +0100 |
commit | ed2a64b0d27586f4e3ab8e42f535a97a220843d5 (patch) | |
tree | 76ee6eff2fb9f0d6589107caa1d37dcf3f3ff5c7 /rcfile_l.l | |
parent | 5b86eee066256aecde36ec9ce9487c0d38fd8a5e (diff) | |
download | fetchmail-ed2a64b0d27586f4e3ab8e42f535a97a220843d5.tar.gz fetchmail-ed2a64b0d27586f4e3ab8e42f535a97a220843d5.tar.bz2 fetchmail-ed2a64b0d27586f4e3ab8e42f535a97a220843d5.zip |
Bugfix: recognize local as shorthand for localdomains.
Diffstat (limited to 'rcfile_l.l')
-rw-r--r-- | rcfile_l.l | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -88,7 +88,7 @@ poll { return POLL; } skip { return SKIP; } via { return VIA; } aka { return AKA; } -local(domains) { return LOCALDOMAINS; } +local(domains)? { return LOCALDOMAINS; } proto(col)? { return PROTOCOL; } service { return SERVICE; } port { return PORT; } |