mirror of
https://github.com/Llewellynvdm/conky.git
synced 2025-02-05 21:48:33 +00:00
Improve failure handling in mail threads.
When we have a failure in the mail thread, lookup the hostname again in case the failure is due odd to DNS changes, or some other madness.
This commit is contained in:
parent
3f7be35406
commit
cf4f3021f9
19
src/mail.c
19
src/mail.c
@ -672,6 +672,11 @@ static void *imap_thread(void *arg)
|
|||||||
int res;
|
int res;
|
||||||
fd_set fdset;
|
fd_set fdset;
|
||||||
|
|
||||||
|
if (fail > 0) {
|
||||||
|
NORM_ERR("Trying IMAP connection again for %s@%s (try %u/%u)",
|
||||||
|
mail->user, mail->host, fail + 1, mail->retries);
|
||||||
|
resolved_host = 0; /* force us to resolve the hostname again */
|
||||||
|
}
|
||||||
if (!resolved_host) {
|
if (!resolved_host) {
|
||||||
memset(&hints, 0, sizeof(struct addrinfo));
|
memset(&hints, 0, sizeof(struct addrinfo));
|
||||||
hints.ai_family = AF_UNSPEC;
|
hints.ai_family = AF_UNSPEC;
|
||||||
@ -688,10 +693,6 @@ static void *imap_thread(void *arg)
|
|||||||
}
|
}
|
||||||
resolved_host = 1;
|
resolved_host = 1;
|
||||||
}
|
}
|
||||||
if (fail > 0) {
|
|
||||||
NORM_ERR("Trying IMAP connection again for %s@%s (try %u/%u)",
|
|
||||||
mail->user, mail->host, fail + 1, mail->retries);
|
|
||||||
}
|
|
||||||
do {
|
do {
|
||||||
for (rp = ai; rp != NULL; rp = rp->ai_next) {
|
for (rp = ai; rp != NULL; rp = rp->ai_next) {
|
||||||
sockfd = socket(rp->ai_family, rp->ai_socktype, rp->ai_protocol);
|
sockfd = socket(rp->ai_family, rp->ai_socktype, rp->ai_protocol);
|
||||||
@ -1018,6 +1019,12 @@ static void *pop3_thread(void *arg)
|
|||||||
struct timeval fetchtimeout;
|
struct timeval fetchtimeout;
|
||||||
int res;
|
int res;
|
||||||
fd_set fdset;
|
fd_set fdset;
|
||||||
|
|
||||||
|
if (fail > 0) {
|
||||||
|
NORM_ERR("Trying POP3 connection again for %s@%s (try %u/%u)",
|
||||||
|
mail->user, mail->host, fail + 1, mail->retries);
|
||||||
|
resolved_host = 0; /* force us to resolve the hostname again */
|
||||||
|
}
|
||||||
if (!resolved_host) {
|
if (!resolved_host) {
|
||||||
memset(&hints, 0, sizeof(struct addrinfo));
|
memset(&hints, 0, sizeof(struct addrinfo));
|
||||||
hints.ai_family = AF_UNSPEC;
|
hints.ai_family = AF_UNSPEC;
|
||||||
@ -1034,10 +1041,6 @@ static void *pop3_thread(void *arg)
|
|||||||
}
|
}
|
||||||
resolved_host = 1;
|
resolved_host = 1;
|
||||||
}
|
}
|
||||||
if (fail > 0) {
|
|
||||||
NORM_ERR("Trying POP3 connection again for %s@%s (try %u/%u)",
|
|
||||||
mail->user, mail->host, fail + 1, mail->retries);
|
|
||||||
}
|
|
||||||
do {
|
do {
|
||||||
for (rp = ai; rp != NULL; rp = rp->ai_next) {
|
for (rp = ai; rp != NULL; rp = rp->ai_next) {
|
||||||
sockfd = socket(rp->ai_family, rp->ai_socktype, rp->ai_protocol);
|
sockfd = socket(rp->ai_family, rp->ai_socktype, rp->ai_protocol);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user