diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-10-08 05:03:55 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-10-08 05:03:55 +0000 |
commit | caee98b5322babe97c33a64141a413f430e9a8ba (patch) | |
tree | a4140c3996f7d178ca02df7e8b764f10a93b8b63 /driver.c | |
parent | 36e3009461df70159a9dad1906c23fc51491f761 (diff) | |
download | fetchmail-caee98b5322babe97c33a64141a413f430e9a8ba.tar.gz fetchmail-caee98b5322babe97c33a64141a413f430e9a8ba.tar.bz2 fetchmail-caee98b5322babe97c33a64141a413f430e9a8ba.zip |
Bug fixes and better RC file documentation.
svn path=/trunk/; revision=243
Diffstat (limited to 'driver.c')
-rw-r--r-- | driver.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -424,6 +424,10 @@ struct hostrec *queryctl; headers = NULL; } + /* SMTP byte-stuffing */ + if (*bufp == '.' && queryctl->mda[0] == 0) + write(mboxfd, ".", 1); + /* write this line to the file */ if (write(mboxfd,bufp,strlen(bufp)) < 0) { |