diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-09-12 19:31:09 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-09-12 19:31:09 +0000 |
commit | a43b8133fd524395bf38ff7d7576dad197c11747 (patch) | |
tree | e8000801ac9851ba7d2c7973f29841e916d51450 /options.c | |
parent | 9828eb6550a33eb3e8da04b6faf5da33c5de9200 (diff) | |
download | fetchmail-a43b8133fd524395bf38ff7d7576dad197c11747.tar.gz fetchmail-a43b8133fd524395bf38ff7d7576dad197c11747.tar.bz2 fetchmail-a43b8133fd524395bf38ff7d7576dad197c11747.zip |
Make SMTP forwarding the default.
svn path=/trunk/; revision=93
Diffstat (limited to 'options.c')
-rw-r--r-- | options.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -334,7 +334,8 @@ struct hostrec *queryctl; strcpy(queryctl->localname,pw->pw_name); strcpy(queryctl->remotename,pw->pw_name); sprintf(queryctl->userfolder, USERFOLDER, pw->pw_name); - queryctl->output = TO_MDA; + strcpy(queryctl->smtphost, "localhost"); + queryctl->output = TO_SMTP; (void) sprintf(queryctl->mda, DEF_MDA, queryctl->localname); poprcfile = |