diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-12-15 03:21:44 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-12-15 03:21:44 +0000 |
commit | e4697a975e136c884e0cf7c9056d8547fd959555 (patch) | |
tree | 0b0efc7fc8b2a806dbaec8532c579c8a4c5b6a92 /driver.c | |
parent | e36a92e005700a7cbccdf2d5885baf1efb43e4ee (diff) | |
download | fetchmail-e4697a975e136c884e0cf7c9056d8547fd959555.tar.gz fetchmail-e4697a975e136c884e0cf7c9056d8547fd959555.tar.bz2 fetchmail-e4697a975e136c884e0cf7c9056d8547fd959555.zip |
Hide remotename.
svn path=/trunk/; revision=1570
Diffstat (limited to 'driver.c')
-rw-r--r-- | driver.c | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -1184,11 +1184,15 @@ int num; /* index of message */ n = stuffline(ctl, buf); if (n != -1) { - sprintf(buf, "\tby %s (fetchmail-%s %s run for %s)\n", + /* + * We used to include ctl->remotename in this log line, + * but this can be secure information that would be bad + * to reveal. + */ + sprintf(buf, "\tby %s (fetchmail-%s %s)\n", fetchmailhost, RELEASE_ID, - protocol->name, - ctl->remotename); + protocol->name); n = stuffline(ctl, buf); if (n != -1) { |