diff options
| author | manuel <manuel@mausz.at> | 2023-08-10 09:49:41 +0200 |
|---|---|---|
| committer | manuel <manuel@mausz.at> | 2023-08-10 09:49:41 +0200 |
| commit | a292e44f38ce771dd34e56dec2886318bdaacfe8 (patch) | |
| tree | 5ce8c736ef64db8700c4ae353087cb78ce7c46e2 | |
| parent | 3fbb87334069fc85a992a05a51753d91239955c8 (diff) | |
| download | qmail-a292e44f38ce771dd34e56dec2886318bdaacfe8.tar.gz qmail-a292e44f38ce771dd34e56dec2886318bdaacfe8.tar.bz2 qmail-a292e44f38ce771dd34e56dec2886318bdaacfe8.zip | |
Get rid of useless "User and password not set, continuing without
authentication...." message
| -rw-r--r-- | qmail-remote.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/qmail-remote.c b/qmail-remote.c index c2ab562..b5fd940 100644 --- a/qmail-remote.c +++ b/qmail-remote.c | |||
| @@ -118,13 +118,13 @@ Sorry. Although I'm listed as a best-preference MX or A for that host,\n\ | |||
| 118 | it isn't in my control/locals file, so I don't treat it as local. (#5.4.6)\n"); | 118 | it isn't in my control/locals file, so I don't treat it as local. (#5.4.6)\n"); |
| 119 | zerodie(); } | 119 | zerodie(); } |
| 120 | void auth_user_not_set() { | 120 | void auth_user_not_set() { |
| 121 | if(!stralloc_copys(&auth_status, \ | 121 | //if(!stralloc_copys(&auth_status, |
| 122 | "User and password not set, continuing without authentication.\n")) | 122 | // "User and password not set, continuing without authentication.\n")) |
| 123 | temp_nomem(); | 123 | // temp_nomem(); |
| 124 | if(!stralloc_0(&auth_status)) temp_nomem(); | 124 | if(!stralloc_0(&auth_status)) temp_nomem(); |
| 125 | } | 125 | } |
| 126 | void no_supported_auth() { | 126 | void no_supported_auth() { |
| 127 | if(!stralloc_copys(&auth_status, \ | 127 | if(!stralloc_copys(&auth_status, |
| 128 | "No supported AUTH method found, continuing without authentication.\n")) | 128 | "No supported AUTH method found, continuing without authentication.\n")) |
| 129 | temp_nomem(); | 129 | temp_nomem(); |
| 130 | if(!stralloc_0(&auth_status)) temp_nomem(); | 130 | if(!stralloc_0(&auth_status)) temp_nomem(); |
