diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1999-12-19 18:25:18 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1999-12-19 18:25:18 +0000 |
commit | e7df604e32900cd5ac95765a30460be8d2de99cb (patch) | |
tree | 0eaa979f88abc86f95e7c8d9aa6ad5f8532e195a /fetchmailconf | |
parent | 6ef8ae12c3ca8ba36cf23b9ba70427a330f4614e (diff) | |
download | fetchmail-e7df604e32900cd5ac95765a30460be8d2de99cb.tar.gz fetchmail-e7df604e32900cd5ac95765a30460be8d2de99cb.tar.bz2 fetchmail-e7df604e32900cd5ac95765a30460be8d2de99cb.zip |
Fixed indentation error in fetchmailconf.
svn path=/trunk/; revision=2664
Diffstat (limited to 'fetchmailconf')
-rwxr-xr-x | fetchmailconf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fetchmailconf b/fetchmailconf index 6b618e38..b67892c5 100755 --- a/fetchmailconf +++ b/fetchmailconf @@ -1112,14 +1112,14 @@ switch --enable-POP2. # The greeting line on the server known to be buggy is: # +OK POP3 server ready (running FTGate V2, 2, 1, 0 Jun 21 1999 09:55:01) # -if string.find(greetline, "FTGate") > 0: + if string.find(greetline, "FTGate") > 0: warnings = warnings + """ This POP server has a weird bug; it says OK twice in response to TOP. Its response to RETR is normal, so use the `fetchall'. """ -if string.find(greetline, "POP-Max") > 0: + if string.find(greetline, "POP-Max") > 0: warnings = warnings + """ The Mail Max server screws up on mail with attachments. It reports the message size with attachments included, but doesn't downloasd them on a |