2010-01-03 07:59:24 +00:00
|
|
|
/* -*- mode: c++; c-basic-offset: 4; tab-width: 4; indent-tabs-mode: t -*-
|
|
|
|
* vim: ts=4 sw=4 noet ai cindent syntax=cpp
|
2009-07-28 21:44:22 +00:00
|
|
|
*
|
|
|
|
* Conky, a system monitor, based on torsmo
|
2005-08-05 01:06:17 +00:00
|
|
|
*
|
2007-08-10 19:53:44 +00:00
|
|
|
* Any original torsmo code is licensed under the BSD license
|
|
|
|
*
|
|
|
|
* All code written since the fork of torsmo is licensed under the GPL
|
|
|
|
*
|
|
|
|
* Please see COPYING for details
|
|
|
|
*
|
|
|
|
* Copyright (c) 2004, Hannu Saransaari and Lauri Hakkarainen
|
2010-01-01 23:46:17 +00:00
|
|
|
* Copyright (c) 2005-2010 Brenden Matthews, Philip Kovacs, et. al.
|
2008-02-20 20:30:45 +00:00
|
|
|
* (see AUTHORS)
|
2007-08-10 19:53:44 +00:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2008-02-20 20:30:45 +00:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2005-08-05 01:06:17 +00:00
|
|
|
*
|
2008-12-09 23:35:49 +00:00
|
|
|
*/
|
2005-08-05 01:06:17 +00:00
|
|
|
|
2008-12-15 21:40:24 +00:00
|
|
|
#include "config.h"
|
2010-08-26 21:07:21 +00:00
|
|
|
|
|
|
|
#include "mail.h"
|
|
|
|
|
2008-12-14 02:53:05 +00:00
|
|
|
#include "conky.h"
|
2008-12-15 21:40:24 +00:00
|
|
|
#include "common.h"
|
|
|
|
#include "logging.h"
|
2009-10-24 23:17:30 +00:00
|
|
|
#include "text_object.h"
|
2008-12-14 02:53:05 +00:00
|
|
|
|
2008-12-15 21:40:24 +00:00
|
|
|
#include <errno.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
2008-12-23 03:59:42 +00:00
|
|
|
#include <limits.h>
|
2009-03-28 17:53:35 +00:00
|
|
|
#include <netinet/in.h>
|
2008-12-15 21:40:24 +00:00
|
|
|
#include <netdb.h>
|
|
|
|
#include <sys/socket.h>
|
2005-07-20 00:30:40 +00:00
|
|
|
#include <sys/stat.h>
|
2006-03-16 18:07:31 +00:00
|
|
|
#include <sys/time.h>
|
2008-12-23 03:59:42 +00:00
|
|
|
#include <sys/param.h>
|
2006-03-16 18:07:31 +00:00
|
|
|
|
2005-07-20 00:30:40 +00:00
|
|
|
#include <dirent.h>
|
2008-12-14 02:53:05 +00:00
|
|
|
#include <termios.h>
|
2005-07-20 00:30:40 +00:00
|
|
|
|
2011-03-25 11:26:49 +00:00
|
|
|
#include <cmath>
|
|
|
|
#include <mutex>
|
2010-06-02 16:00:38 +00:00
|
|
|
|
2011-03-25 11:26:49 +00:00
|
|
|
#include "update-cb.hh"
|
2009-10-24 23:59:07 +00:00
|
|
|
|
|
|
|
struct local_mail_s {
|
|
|
|
char *mbox;
|
|
|
|
int mail_count;
|
|
|
|
int new_mail_count;
|
|
|
|
int seen_mail_count;
|
|
|
|
int unseen_mail_count;
|
|
|
|
int flagged_mail_count;
|
|
|
|
int unflagged_mail_count;
|
|
|
|
int forwarded_mail_count;
|
|
|
|
int unforwarded_mail_count;
|
|
|
|
int replied_mail_count;
|
|
|
|
int unreplied_mail_count;
|
|
|
|
int draft_mail_count;
|
|
|
|
int trashed_mail_count;
|
|
|
|
float interval;
|
|
|
|
time_t last_mtime;
|
|
|
|
double last_update;
|
|
|
|
};
|
|
|
|
|
2010-08-26 21:07:21 +00:00
|
|
|
std::pair<std::string, bool>
|
|
|
|
priv::current_mail_spool_setting::do_convert(lua::state &l, int index)
|
|
|
|
{
|
|
|
|
auto ret = Base::do_convert(l, index);
|
|
|
|
if(ret.second)
|
|
|
|
ret.first = variable_substitute(ret.first);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
priv::current_mail_spool_setting current_mail_spool;
|
2005-07-20 00:30:40 +00:00
|
|
|
|
2011-03-25 11:26:49 +00:00
|
|
|
namespace {
|
|
|
|
enum { DEFAULT_MAIL_INTERVAL = 300 /*seconds*/ };
|
|
|
|
|
|
|
|
enum { MP_USER, MP_PASS, MP_FOLDER, MP_COMMAND, MP_HOST, MP_PORT };
|
|
|
|
|
|
|
|
struct mail_result {
|
|
|
|
unsigned long unseen;
|
|
|
|
unsigned long used;
|
|
|
|
unsigned long messages;
|
|
|
|
|
|
|
|
mail_result()
|
|
|
|
: unseen(0), used(0), messages(0)
|
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
|
|
|
class mail_cb: public conky::callback<mail_result, std::string, std::string, std::string,
|
|
|
|
std::string, std::string, in_port_t> {
|
|
|
|
typedef conky::callback<mail_result, std::string, std::string, std::string,
|
|
|
|
std::string, std::string, in_port_t> Base;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
addrinfo *ai;
|
|
|
|
|
|
|
|
uint16_t fail;
|
|
|
|
uint16_t retries;
|
|
|
|
|
|
|
|
void resolve_host()
|
|
|
|
{
|
|
|
|
struct addrinfo hints;
|
|
|
|
char portbuf[8];
|
|
|
|
|
|
|
|
memset(&hints, 0, sizeof(struct addrinfo));
|
|
|
|
hints.ai_family = AF_UNSPEC;
|
|
|
|
hints.ai_socktype = SOCK_STREAM;
|
|
|
|
hints.ai_protocol = IPPROTO_TCP;
|
|
|
|
snprintf(portbuf, 8, "%lu", get<MP_PORT>());
|
|
|
|
|
|
|
|
if(int res = getaddrinfo(get<MP_HOST>().c_str(), portbuf, &hints, &ai))
|
|
|
|
throw std::runtime_error(std::string("IMAP getaddrinfo: ") + gai_strerror(res));
|
|
|
|
}
|
|
|
|
|
|
|
|
int connect()
|
|
|
|
{
|
|
|
|
for (struct addrinfo *rp = ai; rp != NULL; rp = rp->ai_next) {
|
|
|
|
int sockfd = socket(rp->ai_family, rp->ai_socktype, rp->ai_protocol);
|
|
|
|
if (sockfd == -1) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (::connect(sockfd, rp->ai_addr, rp->ai_addrlen) != -1) {
|
|
|
|
return sockfd;
|
|
|
|
}
|
|
|
|
close(sockfd);
|
|
|
|
}
|
|
|
|
throw std::runtime_error("Unable to connect to mail server");
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void merge(callback_base &&other)
|
|
|
|
{
|
|
|
|
mail_cb &&o = dynamic_cast<mail_cb &&>(other);
|
|
|
|
if(retries < o.retries) {
|
|
|
|
retries = o.retries;
|
|
|
|
fail = 0;
|
|
|
|
}
|
2011-03-27 12:45:38 +00:00
|
|
|
|
|
|
|
Base::merge(std::move(other));
|
2011-03-25 11:26:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
mail_cb(uint32_t period, const Tuple &tuple, uint16_t retries_)
|
|
|
|
: Base(period, false, tuple, true), ai(NULL), fail(0), retries(retries_)
|
|
|
|
{}
|
|
|
|
|
|
|
|
~mail_cb()
|
|
|
|
{
|
|
|
|
if(ai)
|
|
|
|
freeaddrinfo(ai);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct mail_param_ex: public mail_cb::Tuple {
|
|
|
|
uint16_t retries;
|
|
|
|
uint32_t period;
|
|
|
|
|
|
|
|
mail_param_ex()
|
|
|
|
: retries(0), period(1)
|
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
|
|
|
class imap_cb: public mail_cb {
|
|
|
|
typedef mail_cb Base;
|
|
|
|
|
|
|
|
void check_status(char *recvbuf);
|
|
|
|
void unseen_command(unsigned long old_unseen, unsigned long old_messages);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual void work();
|
|
|
|
|
|
|
|
public:
|
|
|
|
imap_cb(uint32_t period, const Tuple &tuple, uint16_t retries_)
|
|
|
|
: Base(period, tuple, retries_)
|
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
|
|
|
class pop3_cb: public mail_cb {
|
|
|
|
typedef mail_cb Base;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual void work();
|
|
|
|
|
|
|
|
public:
|
|
|
|
pop3_cb(uint32_t period, const Tuple &tuple, uint16_t retries_)
|
|
|
|
: Base(period, tuple, retries_)
|
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct mail_param_ex *global_mail;
|
|
|
|
}
|
2009-10-24 23:43:08 +00:00
|
|
|
|
2009-10-24 23:59:07 +00:00
|
|
|
static void update_mail_count(struct local_mail_s *mail)
|
2005-07-20 00:30:40 +00:00
|
|
|
{
|
2008-03-29 09:58:09 +00:00
|
|
|
struct stat st;
|
2005-07-20 00:30:40 +00:00
|
|
|
|
2008-02-20 20:30:45 +00:00
|
|
|
if (mail == NULL) {
|
2005-07-20 00:30:40 +00:00
|
|
|
return;
|
2008-02-20 20:30:45 +00:00
|
|
|
}
|
2005-07-20 00:30:40 +00:00
|
|
|
|
|
|
|
/* TODO: use that fine file modification notify on Linux 2.4 */
|
|
|
|
|
|
|
|
/* don't check mail so often (9.5s is minimum interval) */
|
2008-02-20 20:30:45 +00:00
|
|
|
if (current_update_time - mail->last_update < 9.5) {
|
2005-07-20 00:30:40 +00:00
|
|
|
return;
|
2008-02-20 20:30:45 +00:00
|
|
|
} else {
|
2007-10-02 23:57:41 +00:00
|
|
|
mail->last_update = current_update_time;
|
2008-02-20 20:30:45 +00:00
|
|
|
}
|
2005-07-20 00:30:40 +00:00
|
|
|
|
2009-08-01 18:45:43 +00:00
|
|
|
if (stat(mail->mbox, &st)) {
|
2009-06-08 16:35:41 +00:00
|
|
|
static int rep = 0;
|
2008-02-20 20:30:45 +00:00
|
|
|
|
2005-07-20 00:30:40 +00:00
|
|
|
if (!rep) {
|
2009-08-01 18:45:43 +00:00
|
|
|
NORM_ERR("can't stat %s: %s", mail->mbox, strerror(errno));
|
2005-07-20 00:30:40 +00:00
|
|
|
rep = 1;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#if HAVE_DIRENT_H
|
|
|
|
/* maildir format */
|
2008-03-29 09:58:09 +00:00
|
|
|
if (S_ISDIR(st.st_mode)) {
|
2005-07-20 00:30:40 +00:00
|
|
|
DIR *dir;
|
|
|
|
char *dirname;
|
|
|
|
struct dirent *dirent;
|
2009-02-18 05:26:15 +00:00
|
|
|
char *mailflags;
|
2005-07-20 00:30:40 +00:00
|
|
|
|
2007-10-02 23:57:41 +00:00
|
|
|
mail->mail_count = mail->new_mail_count = 0;
|
2009-02-18 05:26:15 +00:00
|
|
|
mail->seen_mail_count = mail->unseen_mail_count = 0;
|
|
|
|
mail->flagged_mail_count = mail->unflagged_mail_count = 0;
|
|
|
|
mail->forwarded_mail_count = mail->unforwarded_mail_count = 0;
|
|
|
|
mail->replied_mail_count = mail->unreplied_mail_count = 0;
|
|
|
|
mail->draft_mail_count = mail->trashed_mail_count = 0;
|
2009-08-01 18:45:43 +00:00
|
|
|
dirname = (char *) malloc(sizeof(char) * (strlen(mail->mbox) + 5));
|
2005-07-20 00:30:40 +00:00
|
|
|
if (!dirname) {
|
2009-08-01 18:45:43 +00:00
|
|
|
NORM_ERR("malloc");
|
2005-07-20 00:30:40 +00:00
|
|
|
return;
|
|
|
|
}
|
2009-08-01 18:45:43 +00:00
|
|
|
strcpy(dirname, mail->mbox);
|
2005-07-20 00:30:40 +00:00
|
|
|
strcat(dirname, "/");
|
|
|
|
/* checking the cur subdirectory */
|
|
|
|
strcat(dirname, "cur");
|
|
|
|
|
|
|
|
dir = opendir(dirname);
|
|
|
|
if (!dir) {
|
2009-08-01 18:45:43 +00:00
|
|
|
NORM_ERR("cannot open directory");
|
2005-07-20 00:30:40 +00:00
|
|
|
free(dirname);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
dirent = readdir(dir);
|
|
|
|
while (dirent) {
|
|
|
|
/* . and .. are skipped */
|
|
|
|
if (dirent->d_name[0] != '.') {
|
2007-10-02 23:57:41 +00:00
|
|
|
mail->mail_count++;
|
2009-02-18 05:26:15 +00:00
|
|
|
mailflags = (char *) malloc(sizeof(char) * strlen(strrchr(dirent->d_name, ',')));
|
|
|
|
if (!mailflags) {
|
2009-08-01 18:45:43 +00:00
|
|
|
NORM_ERR("malloc");
|
2009-02-18 05:26:15 +00:00
|
|
|
free(dirname);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
strcpy(mailflags, strrchr(dirent->d_name, ','));
|
|
|
|
if (!strchr(mailflags, 'T')) { /* The message is not in the trash */
|
|
|
|
if (strchr(mailflags, 'S')) { /*The message has been seen */
|
|
|
|
mail->seen_mail_count++;
|
|
|
|
} else {
|
|
|
|
mail->unseen_mail_count++;
|
|
|
|
}
|
|
|
|
if (strchr(mailflags, 'F')) { /*The message was flagged */
|
|
|
|
mail->flagged_mail_count++;
|
|
|
|
} else {
|
|
|
|
mail->unflagged_mail_count++;
|
|
|
|
}
|
|
|
|
if (strchr(mailflags, 'P')) { /*The message was forwarded */
|
|
|
|
mail->forwarded_mail_count++;
|
|
|
|
} else {
|
|
|
|
mail->unforwarded_mail_count++;
|
|
|
|
}
|
|
|
|
if (strchr(mailflags, 'R')) { /*The message was replied */
|
|
|
|
mail->replied_mail_count++;
|
|
|
|
} else {
|
|
|
|
mail->unreplied_mail_count++;
|
|
|
|
}
|
|
|
|
if (strchr(mailflags, 'D')) { /*The message is a draft */
|
|
|
|
mail->draft_mail_count++;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
mail->trashed_mail_count++;
|
|
|
|
}
|
|
|
|
free(mailflags);
|
2005-07-20 00:30:40 +00:00
|
|
|
}
|
|
|
|
dirent = readdir(dir);
|
|
|
|
}
|
|
|
|
closedir(dir);
|
|
|
|
|
|
|
|
dirname[strlen(dirname) - 3] = '\0';
|
|
|
|
strcat(dirname, "new");
|
|
|
|
|
|
|
|
dir = opendir(dirname);
|
|
|
|
if (!dir) {
|
2009-08-01 18:45:43 +00:00
|
|
|
NORM_ERR("cannot open directory");
|
2005-07-20 00:30:40 +00:00
|
|
|
free(dirname);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
dirent = readdir(dir);
|
|
|
|
while (dirent) {
|
|
|
|
/* . and .. are skipped */
|
|
|
|
if (dirent->d_name[0] != '.') {
|
2007-10-02 23:57:41 +00:00
|
|
|
mail->new_mail_count++;
|
|
|
|
mail->mail_count++;
|
2009-02-18 05:26:15 +00:00
|
|
|
mail->unseen_mail_count++; /* new messages cannot have been seen */
|
2005-07-20 00:30:40 +00:00
|
|
|
}
|
|
|
|
dirent = readdir(dir);
|
|
|
|
}
|
|
|
|
closedir(dir);
|
|
|
|
|
|
|
|
free(dirname);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
/* mbox format */
|
2008-03-29 09:58:09 +00:00
|
|
|
if (st.st_mtime != mail->last_mtime) {
|
2005-07-20 00:30:40 +00:00
|
|
|
/* yippee, modification time has changed, let's read mail count! */
|
|
|
|
static int rep;
|
|
|
|
FILE *fp;
|
|
|
|
int reading_status = 0;
|
|
|
|
|
|
|
|
/* could lock here but I don't think it's really worth it because
|
|
|
|
* this isn't going to write mail spool */
|
|
|
|
|
2007-10-02 23:57:41 +00:00
|
|
|
mail->new_mail_count = mail->mail_count = 0;
|
2005-07-20 00:30:40 +00:00
|
|
|
|
2009-02-18 05:26:15 +00:00
|
|
|
/* these flags are not supported for mbox */
|
|
|
|
mail->seen_mail_count = mail->unseen_mail_count = -1;
|
|
|
|
mail->flagged_mail_count = mail->unflagged_mail_count = -1;
|
|
|
|
mail->forwarded_mail_count = mail->unforwarded_mail_count = -1;
|
|
|
|
mail->replied_mail_count = mail->unreplied_mail_count = -1;
|
|
|
|
mail->draft_mail_count = mail->trashed_mail_count = -1;
|
|
|
|
|
2009-08-01 18:45:43 +00:00
|
|
|
fp = open_file(mail->mbox, &rep);
|
2008-02-20 20:30:45 +00:00
|
|
|
if (!fp) {
|
2005-07-20 00:30:40 +00:00
|
|
|
return;
|
2008-02-20 20:30:45 +00:00
|
|
|
}
|
2005-07-20 00:30:40 +00:00
|
|
|
|
|
|
|
/* NOTE: adds mail as new if there isn't Status-field at all */
|
|
|
|
|
|
|
|
while (!feof(fp)) {
|
|
|
|
char buf[128];
|
2009-06-08 16:35:41 +00:00
|
|
|
int was_new = 0;
|
2008-02-20 20:30:45 +00:00
|
|
|
|
|
|
|
if (fgets(buf, 128, fp) == NULL) {
|
2005-07-20 00:30:40 +00:00
|
|
|
break;
|
2008-02-20 20:30:45 +00:00
|
|
|
}
|
2005-07-20 00:30:40 +00:00
|
|
|
|
|
|
|
if (strncmp(buf, "From ", 5) == 0) {
|
|
|
|
/* ignore MAILER-DAEMON */
|
2008-02-20 20:30:45 +00:00
|
|
|
if (strncmp(buf + 5, "MAILER-DAEMON ", 14) != 0) {
|
2007-10-02 23:57:41 +00:00
|
|
|
mail->mail_count++;
|
2009-06-08 16:35:41 +00:00
|
|
|
was_new = 0;
|
2005-07-20 00:30:40 +00:00
|
|
|
|
2009-06-08 16:35:41 +00:00
|
|
|
if (reading_status == 1) {
|
2007-10-02 23:57:41 +00:00
|
|
|
mail->new_mail_count++;
|
2008-02-20 20:30:45 +00:00
|
|
|
} else {
|
2005-07-20 00:30:40 +00:00
|
|
|
reading_status = 1;
|
2008-02-20 20:30:45 +00:00
|
|
|
}
|
2005-07-20 00:30:40 +00:00
|
|
|
}
|
|
|
|
} else {
|
2009-06-08 16:35:41 +00:00
|
|
|
if (reading_status == 1
|
2008-02-20 20:30:45 +00:00
|
|
|
&& strncmp(buf, "X-Mozilla-Status:", 17) == 0) {
|
2009-06-08 16:35:41 +00:00
|
|
|
int xms = strtol(buf + 17, NULL, 16);
|
|
|
|
/* check that mail isn't marked for deletion */
|
|
|
|
if (xms & 0x0008) {
|
|
|
|
mail->trashed_mail_count++;
|
|
|
|
reading_status = 0;
|
|
|
|
/* Don't check whether the trashed email is unread */
|
|
|
|
continue;
|
|
|
|
}
|
2005-07-20 00:30:40 +00:00
|
|
|
/* check that mail isn't already read */
|
2009-06-08 16:35:41 +00:00
|
|
|
if (!(xms & 0x0001)) {
|
2007-10-02 23:57:41 +00:00
|
|
|
mail->new_mail_count++;
|
2009-06-08 16:35:41 +00:00
|
|
|
was_new = 1;
|
2008-02-20 20:30:45 +00:00
|
|
|
}
|
2005-07-20 00:30:40 +00:00
|
|
|
|
2009-06-08 16:35:41 +00:00
|
|
|
/* check for an additional X-Status header */
|
|
|
|
reading_status = 2;
|
2005-07-20 00:30:40 +00:00
|
|
|
continue;
|
|
|
|
}
|
2009-06-08 16:35:41 +00:00
|
|
|
if (reading_status == 1 && strncmp(buf, "Status:", 7) == 0) {
|
2005-07-20 00:30:40 +00:00
|
|
|
/* check that mail isn't already read */
|
2008-02-20 20:30:45 +00:00
|
|
|
if (strchr(buf + 7, 'R') == NULL) {
|
2007-10-02 23:57:41 +00:00
|
|
|
mail->new_mail_count++;
|
2009-06-08 16:35:41 +00:00
|
|
|
was_new = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
reading_status = 2;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (reading_status >= 1 && strncmp(buf, "X-Status:", 9) == 0) {
|
|
|
|
/* check that mail isn't marked for deletion */
|
|
|
|
if (strchr(buf + 9, 'D') != NULL) {
|
|
|
|
mail->trashed_mail_count++;
|
|
|
|
/* If the mail was previously detected as new,
|
|
|
|
subtract it from the new mail count */
|
|
|
|
if (was_new)
|
|
|
|
mail->new_mail_count--;
|
2008-02-20 20:30:45 +00:00
|
|
|
}
|
2005-07-20 00:30:40 +00:00
|
|
|
|
|
|
|
reading_status = 0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* skip until \n */
|
2008-02-20 20:30:45 +00:00
|
|
|
while (strchr(buf, '\n') == NULL && !feof(fp)) {
|
2009-12-20 01:49:47 +00:00
|
|
|
if (!fgets(buf, 128, fp))
|
|
|
|
break;
|
2008-02-20 20:30:45 +00:00
|
|
|
}
|
2005-07-20 00:30:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fclose(fp);
|
|
|
|
|
2008-02-20 20:30:45 +00:00
|
|
|
if (reading_status) {
|
2007-10-02 23:57:41 +00:00
|
|
|
mail->new_mail_count++;
|
2008-02-20 20:30:45 +00:00
|
|
|
}
|
2005-07-20 00:30:40 +00:00
|
|
|
|
2008-03-29 09:58:09 +00:00
|
|
|
mail->last_mtime = st.st_mtime;
|
2005-07-20 00:30:40 +00:00
|
|
|
}
|
|
|
|
}
|
2008-12-14 02:53:05 +00:00
|
|
|
|
2009-10-24 23:13:50 +00:00
|
|
|
void parse_local_mail_args(struct text_object *obj, const char *arg)
|
|
|
|
{
|
|
|
|
float n1;
|
2010-08-26 18:03:53 +00:00
|
|
|
char mbox[256];
|
2009-10-24 23:59:07 +00:00
|
|
|
struct local_mail_s *locmail;
|
2009-10-24 23:13:50 +00:00
|
|
|
|
|
|
|
if (!arg) {
|
|
|
|
n1 = 9.5;
|
2010-08-26 21:07:21 +00:00
|
|
|
strncpy(mbox, current_mail_spool.get(*state).c_str(), sizeof(mbox));
|
2009-10-24 23:13:50 +00:00
|
|
|
} else {
|
|
|
|
if (sscanf(arg, "%s %f", mbox, &n1) != 2) {
|
|
|
|
n1 = 9.5;
|
|
|
|
strncpy(mbox, arg, sizeof(mbox));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-08-26 18:03:53 +00:00
|
|
|
std::string dst = variable_substitute(mbox);
|
2009-10-24 23:59:07 +00:00
|
|
|
|
2010-01-03 07:59:24 +00:00
|
|
|
locmail = (struct local_mail_s*)malloc(sizeof(struct local_mail_s));
|
2009-10-24 23:59:07 +00:00
|
|
|
memset(locmail, 0, sizeof(struct local_mail_s));
|
2010-08-29 21:50:32 +00:00
|
|
|
locmail->mbox = strndup(dst.c_str(), text_buffer_size.get(*state));
|
2009-10-24 23:59:07 +00:00
|
|
|
locmail->interval = n1;
|
|
|
|
obj->data.opaque = locmail;
|
2009-10-24 23:13:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#define PRINT_MAILS_GENERATOR(x) \
|
|
|
|
void print_##x##mails(struct text_object *obj, char *p, int p_max_size) \
|
|
|
|
{ \
|
2010-01-03 07:59:24 +00:00
|
|
|
struct local_mail_s *locmail = (struct local_mail_s *)obj->data.opaque; \
|
2009-10-24 23:59:07 +00:00
|
|
|
if (!locmail) \
|
|
|
|
return; \
|
|
|
|
update_mail_count(locmail); \
|
|
|
|
snprintf(p, p_max_size, "%d", locmail->x##mail_count); \
|
2009-10-24 23:13:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
PRINT_MAILS_GENERATOR()
|
|
|
|
PRINT_MAILS_GENERATOR(new_)
|
|
|
|
PRINT_MAILS_GENERATOR(seen_)
|
|
|
|
PRINT_MAILS_GENERATOR(unseen_)
|
|
|
|
PRINT_MAILS_GENERATOR(flagged_)
|
|
|
|
PRINT_MAILS_GENERATOR(unflagged_)
|
|
|
|
PRINT_MAILS_GENERATOR(forwarded_)
|
|
|
|
PRINT_MAILS_GENERATOR(unforwarded_)
|
|
|
|
PRINT_MAILS_GENERATOR(replied_)
|
|
|
|
PRINT_MAILS_GENERATOR(unreplied_)
|
|
|
|
PRINT_MAILS_GENERATOR(draft_)
|
|
|
|
PRINT_MAILS_GENERATOR(trashed_)
|
|
|
|
|
2009-10-24 23:59:07 +00:00
|
|
|
void free_local_mails(struct text_object *obj)
|
|
|
|
{
|
2010-01-03 07:59:24 +00:00
|
|
|
struct local_mail_s *locmail = (struct local_mail_s *)obj->data.opaque;
|
2009-10-24 23:59:07 +00:00
|
|
|
|
|
|
|
if (!locmail)
|
|
|
|
return;
|
|
|
|
|
2010-02-24 01:14:20 +00:00
|
|
|
free_and_zero(locmail->mbox);
|
|
|
|
free_and_zero(obj->data.opaque);
|
2009-10-24 23:59:07 +00:00
|
|
|
}
|
|
|
|
|
2008-12-14 02:53:05 +00:00
|
|
|
#define MAXDATASIZE 1000
|
|
|
|
|
2010-09-07 15:39:36 +00:00
|
|
|
namespace {
|
|
|
|
enum mail_type {
|
|
|
|
POP3_TYPE, IMAP_TYPE
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2011-03-25 11:26:49 +00:00
|
|
|
std::unique_ptr<mail_param_ex> parse_mail_args(mail_type type, const char *arg)
|
2008-12-14 02:53:05 +00:00
|
|
|
{
|
2011-03-25 11:26:49 +00:00
|
|
|
using std::get;
|
2008-12-14 02:53:05 +00:00
|
|
|
|
2011-03-25 11:26:49 +00:00
|
|
|
std::unique_ptr<mail_param_ex> mail;
|
|
|
|
char *tmp;
|
|
|
|
char host[128];
|
|
|
|
char user[128];
|
|
|
|
char pass[128];
|
2008-12-14 02:53:05 +00:00
|
|
|
|
2011-03-25 11:26:49 +00:00
|
|
|
if (sscanf(arg, "%128s %128s %128s", host, user, pass)
|
2008-12-14 02:53:05 +00:00
|
|
|
!= 3) {
|
|
|
|
if (type == POP3_TYPE) {
|
2009-08-01 18:45:43 +00:00
|
|
|
NORM_ERR("Scanning POP3 args failed");
|
2009-05-10 01:20:05 +00:00
|
|
|
} else if (type == IMAP_TYPE) {
|
2009-08-01 18:45:43 +00:00
|
|
|
NORM_ERR("Scanning IMAP args failed");
|
2008-12-14 02:53:05 +00:00
|
|
|
}
|
2011-03-25 11:26:49 +00:00
|
|
|
return mail;
|
2008-12-14 02:53:05 +00:00
|
|
|
}
|
2011-03-25 11:26:49 +00:00
|
|
|
|
2008-12-14 02:53:05 +00:00
|
|
|
// see if password needs prompting
|
2011-03-25 11:26:49 +00:00
|
|
|
if (pass[0] == '*' && pass[1] == '\0') {
|
2008-12-14 02:53:05 +00:00
|
|
|
int fp = fileno(stdin);
|
|
|
|
struct termios term;
|
|
|
|
|
|
|
|
tcgetattr(fp, &term);
|
|
|
|
term.c_lflag &= ~ECHO;
|
|
|
|
tcsetattr(fp, TCSANOW, &term);
|
2011-03-25 11:26:49 +00:00
|
|
|
printf("Enter mailbox password (%s@%s): ", user, host);
|
|
|
|
if (scanf("%128s", pass))
|
|
|
|
pass[0] = 0;
|
2008-12-14 02:53:05 +00:00
|
|
|
printf("\n");
|
|
|
|
term.c_lflag |= ECHO;
|
|
|
|
tcsetattr(fp, TCSANOW, &term);
|
|
|
|
}
|
2011-03-25 11:26:49 +00:00
|
|
|
|
|
|
|
mail.reset(new mail_param_ex);
|
|
|
|
get<MP_HOST>(*mail) = host;
|
|
|
|
get<MP_USER>(*mail) = user;
|
|
|
|
get<MP_PASS>(*mail) = pass;
|
|
|
|
|
2008-12-14 02:53:05 +00:00
|
|
|
// now we check for optional args
|
2010-01-03 07:59:24 +00:00
|
|
|
tmp = (char*)strstr(arg, "-r ");
|
2008-12-14 02:53:05 +00:00
|
|
|
if (tmp) {
|
|
|
|
tmp += 3;
|
|
|
|
sscanf(tmp, "%u", &mail->retries);
|
|
|
|
} else {
|
|
|
|
mail->retries = 5; // 5 retries after failure
|
|
|
|
}
|
2011-03-25 11:26:49 +00:00
|
|
|
|
|
|
|
float interval = DEFAULT_MAIL_INTERVAL;
|
2010-01-03 07:59:24 +00:00
|
|
|
tmp = (char*)strstr(arg, "-i ");
|
2008-12-14 02:53:05 +00:00
|
|
|
if (tmp) {
|
|
|
|
tmp += 3;
|
2011-03-25 11:26:49 +00:00
|
|
|
sscanf(tmp, "%f", &interval);
|
2008-12-14 02:53:05 +00:00
|
|
|
}
|
2011-03-25 11:26:49 +00:00
|
|
|
mail->period = std::max(std::lround(interval/active_update_interval()), 1l);
|
|
|
|
|
2010-01-03 07:59:24 +00:00
|
|
|
tmp = (char*)strstr(arg, "-p ");
|
2008-12-14 02:53:05 +00:00
|
|
|
if (tmp) {
|
|
|
|
tmp += 3;
|
2011-03-25 11:26:49 +00:00
|
|
|
sscanf(tmp, "%lu", &get<MP_PORT>(*mail));
|
2008-12-14 02:53:05 +00:00
|
|
|
} else {
|
|
|
|
if (type == POP3_TYPE) {
|
2011-03-25 11:26:49 +00:00
|
|
|
get<MP_PORT>(*mail) = 110; // default pop3 port
|
2008-12-14 02:53:05 +00:00
|
|
|
} else if (type == IMAP_TYPE) {
|
2011-03-25 11:26:49 +00:00
|
|
|
get<MP_PORT>(*mail) = 143; // default imap port
|
2008-12-14 02:53:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (type == IMAP_TYPE) {
|
2010-01-03 07:59:24 +00:00
|
|
|
tmp = (char*)strstr(arg, "-f ");
|
2008-12-14 02:53:05 +00:00
|
|
|
if (tmp) {
|
2011-03-25 11:26:49 +00:00
|
|
|
int len = 0;
|
2008-12-14 02:53:05 +00:00
|
|
|
tmp += 3;
|
2009-09-27 17:40:06 +00:00
|
|
|
if (tmp[0] == '\'') {
|
2010-01-03 07:59:24 +00:00
|
|
|
len = (char*)strstr(tmp + 1, "'") - tmp - 1;
|
2010-06-02 17:28:40 +00:00
|
|
|
tmp++;
|
2009-09-27 17:40:06 +00:00
|
|
|
}
|
2011-03-25 11:26:49 +00:00
|
|
|
get<MP_FOLDER>(*mail).assign(tmp, len);
|
2008-12-14 02:53:05 +00:00
|
|
|
} else {
|
2011-03-25 11:26:49 +00:00
|
|
|
get<MP_FOLDER>(*mail) = "INBOX"; // default imap inbox
|
2008-12-14 02:53:05 +00:00
|
|
|
}
|
|
|
|
}
|
2010-01-03 07:59:24 +00:00
|
|
|
tmp = (char*)strstr(arg, "-e ");
|
2008-12-14 02:53:05 +00:00
|
|
|
if (tmp) {
|
2011-03-25 11:26:49 +00:00
|
|
|
int len = 0;
|
2008-12-14 02:53:05 +00:00
|
|
|
tmp += 3;
|
|
|
|
|
|
|
|
if (tmp[0] == '\'') {
|
2010-01-03 07:59:24 +00:00
|
|
|
len = (char*)strstr(tmp + 1, "'") - tmp - 1;
|
2008-12-14 02:53:05 +00:00
|
|
|
}
|
2011-03-25 11:26:49 +00:00
|
|
|
get<MP_COMMAND>(*mail).assign(tmp + 1, len);
|
2008-12-14 02:53:05 +00:00
|
|
|
}
|
2011-03-25 11:26:49 +00:00
|
|
|
|
2008-12-14 02:53:05 +00:00
|
|
|
return mail;
|
|
|
|
}
|
|
|
|
|
2009-10-24 23:17:30 +00:00
|
|
|
void parse_imap_mail_args(struct text_object *obj, const char *arg)
|
|
|
|
{
|
2009-10-24 23:43:08 +00:00
|
|
|
static int rep = 0;
|
|
|
|
|
2009-10-24 23:17:30 +00:00
|
|
|
if (!arg) {
|
2009-10-24 23:43:08 +00:00
|
|
|
if (!global_mail && !rep) {
|
|
|
|
// something is wrong, warn once then stop
|
|
|
|
NORM_ERR("There's a problem with your mail settings. "
|
|
|
|
"Check that the global mail settings are properly defined"
|
|
|
|
" (line %li).", obj->line);
|
|
|
|
rep = 1;
|
|
|
|
return;
|
|
|
|
}
|
2009-10-24 23:49:58 +00:00
|
|
|
obj->data.opaque = global_mail;
|
2009-10-24 23:17:30 +00:00
|
|
|
return;
|
|
|
|
}
|
2010-09-07 15:39:36 +00:00
|
|
|
// process
|
2011-03-25 11:26:49 +00:00
|
|
|
obj->data.opaque = parse_mail_args(IMAP_TYPE, arg).release();
|
2009-10-24 23:17:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void parse_pop3_mail_args(struct text_object *obj, const char *arg)
|
|
|
|
{
|
2009-10-24 23:43:08 +00:00
|
|
|
static int rep = 0;
|
|
|
|
|
2009-10-24 23:17:30 +00:00
|
|
|
if (!arg) {
|
2009-10-24 23:43:08 +00:00
|
|
|
if (!global_mail && !rep) {
|
|
|
|
// something is wrong, warn once then stop
|
|
|
|
NORM_ERR("There's a problem with your mail settings. "
|
|
|
|
"Check that the global mail settings are properly defined"
|
|
|
|
" (line %li).", obj->line);
|
|
|
|
rep = 1;
|
|
|
|
return;
|
|
|
|
}
|
2009-10-24 23:49:58 +00:00
|
|
|
obj->data.opaque = global_mail;
|
2009-10-24 23:17:30 +00:00
|
|
|
return;
|
|
|
|
}
|
2010-09-07 15:39:36 +00:00
|
|
|
// process
|
2011-03-25 11:26:49 +00:00
|
|
|
obj->data.opaque = parse_mail_args(POP3_TYPE, arg).release();
|
2009-10-24 23:43:08 +00:00
|
|
|
}
|
|
|
|
|
2010-09-07 15:39:36 +00:00
|
|
|
namespace {
|
|
|
|
class mail_setting: public conky::simple_config_setting<std::string> {
|
|
|
|
typedef conky::simple_config_setting<std::string> Base;
|
2009-10-24 23:43:08 +00:00
|
|
|
|
2010-09-07 15:39:36 +00:00
|
|
|
mail_type type;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual void lua_setter(lua::state &l, bool init)
|
|
|
|
{
|
|
|
|
lua::stack_sentry s(l, -2);
|
|
|
|
|
|
|
|
Base::lua_setter(l, init);
|
|
|
|
|
|
|
|
if(init && !global_mail) {
|
|
|
|
const std::string &t = do_convert(l, -1).first;
|
|
|
|
if(t.size())
|
2011-03-25 11:26:49 +00:00
|
|
|
global_mail = parse_mail_args(type, t.c_str()).release();
|
2010-09-07 15:39:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
++s;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void cleanup(lua::state &l)
|
|
|
|
{
|
|
|
|
lua::stack_sentry s(l, -1);
|
|
|
|
|
|
|
|
delete global_mail;
|
|
|
|
global_mail = NULL;
|
|
|
|
|
|
|
|
l.pop();
|
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
|
|
|
mail_setting(const std::string &name, mail_type type_)
|
|
|
|
: Base(name), type(type_)
|
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
|
|
|
mail_setting imap("imap", IMAP_TYPE);
|
|
|
|
mail_setting pop3("pop3", POP3_TYPE);
|
2009-10-24 23:17:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void free_mail_obj(struct text_object *obj)
|
|
|
|
{
|
2009-10-24 23:49:58 +00:00
|
|
|
if (!obj->data.opaque)
|
2009-10-24 23:43:08 +00:00
|
|
|
return;
|
|
|
|
|
2010-09-07 15:39:36 +00:00
|
|
|
if (obj->data.opaque != global_mail) {
|
2011-03-25 11:26:49 +00:00
|
|
|
mail_param_ex *mail = static_cast<mail_param_ex *>(obj->data.opaque);
|
2010-01-03 07:59:24 +00:00
|
|
|
delete mail;
|
2009-10-24 23:49:58 +00:00
|
|
|
obj->data.opaque = 0;
|
2009-10-24 23:17:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-03-25 11:26:49 +00:00
|
|
|
static void command(int sockfd, const std::string &cmd, char *response, const char *verify)
|
2008-12-14 02:53:05 +00:00
|
|
|
{
|
2009-08-08 01:20:47 +00:00
|
|
|
struct timeval fetchtimeout;
|
2008-12-14 02:53:05 +00:00
|
|
|
fd_set fdset;
|
2011-03-25 11:26:49 +00:00
|
|
|
int numbytes = 0;
|
|
|
|
if (send(sockfd, cmd.c_str(), cmd.length(), 0) == -1)
|
|
|
|
throw std::runtime_error("send: " + strerror_r(errno));
|
|
|
|
|
2009-08-08 01:20:47 +00:00
|
|
|
fetchtimeout.tv_sec = 60; // 60 second timeout i guess
|
|
|
|
fetchtimeout.tv_usec = 0;
|
2008-12-14 02:53:05 +00:00
|
|
|
FD_ZERO(&fdset);
|
|
|
|
FD_SET(sockfd, &fdset);
|
2011-03-25 11:26:49 +00:00
|
|
|
|
|
|
|
if(select(sockfd + 1, &fdset, NULL, NULL, &fetchtimeout) == 0)
|
|
|
|
throw std::runtime_error("select: read timeout");
|
|
|
|
|
|
|
|
if ((numbytes = recv(sockfd, response, MAXDATASIZE - 1, 0)) == -1)
|
|
|
|
throw std::runtime_error("recv: " + strerror_r(errno));
|
|
|
|
|
|
|
|
DBGP2("command() command: %s", cmd.c_str());
|
|
|
|
DBGP2("command() received: %s", response);
|
|
|
|
|
2008-12-14 02:53:05 +00:00
|
|
|
response[numbytes] = '\0';
|
2011-03-25 11:26:49 +00:00
|
|
|
if (strstr(response, verify) == NULL)
|
|
|
|
throw std::runtime_error("Unexpected response from server");
|
2008-12-14 02:53:05 +00:00
|
|
|
}
|
|
|
|
|
2011-03-25 11:26:49 +00:00
|
|
|
void imap_cb::check_status(char *recvbuf)
|
2008-12-14 02:53:05 +00:00
|
|
|
{
|
|
|
|
char *reply;
|
2010-01-03 07:59:24 +00:00
|
|
|
reply = (char*)strstr(recvbuf, " (MESSAGES ");
|
2011-03-25 11:26:49 +00:00
|
|
|
if (!reply || strlen(reply) < 2)
|
|
|
|
std::runtime_error("Unexpected response from server");
|
|
|
|
|
2008-12-14 02:53:05 +00:00
|
|
|
reply += 2;
|
|
|
|
*strchr(reply, ')') = '\0';
|
2011-03-25 11:26:49 +00:00
|
|
|
|
|
|
|
std::lock_guard<std::mutex> lock(result_mutex);
|
|
|
|
if(sscanf(reply, "MESSAGES %lu UNSEEN %lu", &result.messages, &result.unseen) != 2)
|
|
|
|
throw std::runtime_error(std::string("Error parsing response: ") + recvbuf);
|
2008-12-14 02:53:05 +00:00
|
|
|
}
|
|
|
|
|
2011-03-25 11:26:49 +00:00
|
|
|
void imap_cb::unseen_command(unsigned long old_unseen, unsigned long old_messages)
|
2008-12-14 02:53:05 +00:00
|
|
|
{
|
2011-03-25 11:26:49 +00:00
|
|
|
if (!get<MP_COMMAND>().empty() && (result.unseen > old_unseen
|
|
|
|
|| (result.messages > old_messages && result.unseen > 0))) {
|
|
|
|
if (system(get<MP_COMMAND>().c_str()) == -1) {
|
2008-12-14 02:53:05 +00:00
|
|
|
perror("system()");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-03-25 11:26:49 +00:00
|
|
|
void imap_cb::work()
|
2008-12-14 02:53:05 +00:00
|
|
|
{
|
|
|
|
int sockfd, numbytes;
|
|
|
|
char recvbuf[MAXDATASIZE];
|
|
|
|
unsigned long old_unseen = ULONG_MAX;
|
|
|
|
unsigned long old_messages = ULONG_MAX;
|
2011-03-25 11:26:49 +00:00
|
|
|
bool has_idle = false;
|
|
|
|
|
|
|
|
while (fail < retries) {
|
2009-08-08 01:20:47 +00:00
|
|
|
struct timeval fetchtimeout;
|
2008-12-14 02:53:05 +00:00
|
|
|
int res;
|
|
|
|
fd_set fdset;
|
|
|
|
|
2011-03-25 11:26:49 +00:00
|
|
|
if(not ai)
|
|
|
|
resolve_host();
|
2008-12-14 02:53:05 +00:00
|
|
|
|
2011-03-25 11:26:49 +00:00
|
|
|
try {
|
|
|
|
sockfd = connect();
|
2009-09-27 01:38:07 +00:00
|
|
|
|
2011-03-25 11:26:49 +00:00
|
|
|
command(sockfd, "", recvbuf, "* OK");
|
2008-12-14 02:53:05 +00:00
|
|
|
|
2011-03-25 11:26:49 +00:00
|
|
|
command(sockfd, "abc CAPABILITY\r\n", recvbuf, "abc OK");
|
|
|
|
if (strstr(recvbuf, " IDLE ") != NULL)
|
|
|
|
has_idle = true;
|
2008-12-14 02:53:05 +00:00
|
|
|
|
2011-03-25 11:26:49 +00:00
|
|
|
command(sockfd, "a1 login " + get<MP_USER>() + " " + get<MP_PASS>() + "\r\n",
|
|
|
|
recvbuf, "a1 OK");
|
|
|
|
|
|
|
|
command(sockfd, "a2 STATUS \"" + get<MP_FOLDER>() + "\" (MESSAGES UNSEEN)\r\n",
|
|
|
|
recvbuf, "a2 OK");
|
|
|
|
check_status(recvbuf);
|
|
|
|
|
|
|
|
unseen_command(old_unseen, old_messages);
|
2008-12-14 02:53:05 +00:00
|
|
|
fail = 0;
|
2011-03-25 11:26:49 +00:00
|
|
|
old_unseen = result.unseen;
|
|
|
|
old_messages = result.messages;
|
2008-12-14 02:53:05 +00:00
|
|
|
|
2011-03-25 11:26:49 +00:00
|
|
|
if(not has_idle) {
|
|
|
|
try { command(sockfd, "a3 LOGOUT\r\n", recvbuf, "a3 OK"); }
|
|
|
|
catch(std::runtime_error &) {}
|
|
|
|
close(sockfd);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
command(sockfd, "a4 SELECT \"" + get<MP_FOLDER>() + "\"\r\n", recvbuf, "a4 OK");
|
|
|
|
|
|
|
|
command(sockfd, "a5 IDLE\r\n", recvbuf, "+ idling");
|
|
|
|
recvbuf[0] = '\0';
|
|
|
|
|
|
|
|
while (1) {
|
|
|
|
/*
|
|
|
|
* RFC 2177 says we have to re-idle every 29 minutes.
|
|
|
|
* We'll do it every 20 minutes to be safe.
|
|
|
|
*/
|
|
|
|
fetchtimeout.tv_sec = 1200;
|
|
|
|
fetchtimeout.tv_usec = 0;
|
|
|
|
DBGP2("idling...");
|
|
|
|
FD_ZERO(&fdset);
|
|
|
|
FD_SET(sockfd, &fdset);
|
|
|
|
FD_SET(donefd(), &fdset);
|
|
|
|
res = select(std::max(sockfd, donefd()) + 1, &fdset, NULL, NULL, &fetchtimeout);
|
|
|
|
if ((res == -1 && errno == EINTR) || FD_ISSET(donefd(), &fdset)) {
|
|
|
|
try { command(sockfd, "a3 LOGOUT\r\n", recvbuf, "a3 OK"); }
|
|
|
|
catch(std::runtime_error &) {}
|
|
|
|
close(sockfd);
|
|
|
|
return;
|
|
|
|
} else if (res > 0) {
|
|
|
|
if((numbytes = recv(sockfd, recvbuf, MAXDATASIZE - 1, 0)) == -1)
|
|
|
|
throw std::runtime_error("recv idling");
|
|
|
|
} else
|
|
|
|
throw std::runtime_error("");
|
|
|
|
|
|
|
|
recvbuf[numbytes] = '\0';
|
|
|
|
DBGP2("imap_thread() received: %s", recvbuf);
|
|
|
|
unsigned long messages, recent = 0;
|
|
|
|
bool force_check = 0;
|
|
|
|
if (strlen(recvbuf) > 2) {
|
|
|
|
char *buf = recvbuf;
|
|
|
|
buf = (char*)strstr(buf, "EXISTS");
|
|
|
|
while (buf && strlen(buf) > 1 && strstr(buf + 1, "EXISTS")) {
|
|
|
|
buf = (char*)strstr(buf + 1, "EXISTS");
|
2008-12-14 02:53:05 +00:00
|
|
|
}
|
2011-03-25 11:26:49 +00:00
|
|
|
if (buf) {
|
|
|
|
// back up until we reach '*'
|
|
|
|
while (buf >= recvbuf && buf[0] != '*') {
|
|
|
|
buf--;
|
2008-12-14 02:53:05 +00:00
|
|
|
}
|
2011-03-25 11:26:49 +00:00
|
|
|
if (sscanf(buf, "* %lu EXISTS\r\n", &messages) == 1) {
|
|
|
|
std::lock_guard<std::mutex> lock(result_mutex);
|
|
|
|
if (result.messages != messages) {
|
|
|
|
force_check = 1;
|
|
|
|
result.messages = messages;
|
2008-12-14 02:53:05 +00:00
|
|
|
}
|
|
|
|
}
|
2011-03-25 11:26:49 +00:00
|
|
|
}
|
|
|
|
buf = recvbuf;
|
|
|
|
buf = (char*)strstr(buf, "RECENT");
|
|
|
|
while (buf && strlen(buf) > 1 && strstr(buf + 1, "RECENT")) {
|
|
|
|
buf = (char*)strstr(buf + 1, "RECENT");
|
|
|
|
}
|
|
|
|
if (buf) {
|
|
|
|
// back up until we reach '*'
|
|
|
|
while (buf >= recvbuf && buf[0] != '*') {
|
|
|
|
buf--;
|
2008-12-14 02:53:05 +00:00
|
|
|
}
|
2011-03-25 11:26:49 +00:00
|
|
|
if (sscanf(buf, "* %lu RECENT\r\n", &recent) != 1) {
|
|
|
|
recent = 0;
|
2008-12-14 02:53:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-03-25 11:26:49 +00:00
|
|
|
/* check if we got a BYE from server */
|
|
|
|
if (strstr(recvbuf, "* BYE")) {
|
|
|
|
// need to re-connect
|
|
|
|
throw std::runtime_error("");
|
2008-12-14 02:53:05 +00:00
|
|
|
}
|
2011-03-25 11:26:49 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* check if we got a FETCH from server, recent was
|
|
|
|
* something other than 0, or we had a timeout
|
|
|
|
*/
|
|
|
|
if (recent > 0 || strstr(recvbuf, " FETCH ") || fetchtimeout.tv_sec == 0 || force_check) {
|
|
|
|
// re-check messages and unseen
|
|
|
|
command(sockfd, "DONE\r\n", recvbuf, "a5 OK");
|
|
|
|
|
|
|
|
command(sockfd, "a2 STATUS \"" + get<MP_FOLDER>()
|
|
|
|
+ "\" (MESSAGES UNSEEN)\r\n", recvbuf, "a2 OK");
|
|
|
|
|
|
|
|
check_status(recvbuf);
|
|
|
|
|
|
|
|
command(sockfd, "a5 IDLE\r\n", recvbuf, "+ idling");
|
2008-12-14 02:53:05 +00:00
|
|
|
}
|
2011-03-25 11:26:49 +00:00
|
|
|
unseen_command(old_unseen, old_messages);
|
|
|
|
fail = 0;
|
|
|
|
old_unseen = result.unseen;
|
|
|
|
old_messages = result.messages;
|
2008-12-14 02:53:05 +00:00
|
|
|
}
|
|
|
|
}
|
2011-03-25 11:26:49 +00:00
|
|
|
catch(std::runtime_error &e) {
|
|
|
|
if(sockfd != -1)
|
|
|
|
close(sockfd);
|
|
|
|
freeaddrinfo(ai);
|
|
|
|
ai = NULL;
|
|
|
|
|
|
|
|
++fail;
|
|
|
|
if(*e.what())
|
|
|
|
NORM_ERR("Error while communicating with IMAP server: %s", e.what());
|
|
|
|
NORM_ERR("Trying IMAP connection again for %s@%s (try %u/%u)",
|
|
|
|
get<MP_USER>().c_str(), get<MP_HOST>().c_str(), fail+1, retries);
|
|
|
|
sleep(fail); /* sleep more for the more failures we have */
|
2008-12-14 02:53:05 +00:00
|
|
|
}
|
2011-03-25 11:26:49 +00:00
|
|
|
|
|
|
|
if(is_done())
|
|
|
|
return;
|
2008-12-14 02:53:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-24 23:17:30 +00:00
|
|
|
void print_imap_unseen(struct text_object *obj, char *p, int p_max_size)
|
|
|
|
{
|
2011-03-25 11:26:49 +00:00
|
|
|
struct mail_param_ex *mail = (struct mail_param_ex *)obj->data.opaque;
|
2009-10-24 23:49:58 +00:00
|
|
|
|
|
|
|
if (!mail)
|
|
|
|
return;
|
|
|
|
|
2011-03-25 11:26:49 +00:00
|
|
|
auto cb = conky::register_cb<imap_cb>(mail->period, *mail, mail->retries);
|
2009-10-24 23:17:30 +00:00
|
|
|
|
2011-03-25 11:26:49 +00:00
|
|
|
snprintf(p, p_max_size, "%lu", cb->get_result_copy().unseen);
|
2009-10-24 23:17:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void print_imap_messages(struct text_object *obj, char *p, int p_max_size)
|
|
|
|
{
|
2011-03-25 11:26:49 +00:00
|
|
|
struct mail_param_ex *mail = (struct mail_param_ex *)obj->data.opaque;
|
2009-10-24 23:49:58 +00:00
|
|
|
|
|
|
|
if (!mail)
|
|
|
|
return;
|
|
|
|
|
2011-03-25 11:26:49 +00:00
|
|
|
auto cb = conky::register_cb<imap_cb>(mail->period, *mail, mail->retries);
|
2009-10-24 23:17:30 +00:00
|
|
|
|
2011-03-25 11:26:49 +00:00
|
|
|
snprintf(p, p_max_size, "%lu", cb->get_result_copy().messages);
|
2008-12-14 02:53:05 +00:00
|
|
|
}
|
|
|
|
|
2011-03-25 11:26:49 +00:00
|
|
|
void pop3_cb::work()
|
2008-12-14 02:53:05 +00:00
|
|
|
{
|
2011-03-25 11:26:49 +00:00
|
|
|
int sockfd;
|
2008-12-14 02:53:05 +00:00
|
|
|
char recvbuf[MAXDATASIZE];
|
|
|
|
char *reply;
|
|
|
|
unsigned long old_unseen = ULONG_MAX;
|
|
|
|
|
2011-03-25 11:26:49 +00:00
|
|
|
while (fail < retries) {
|
|
|
|
if(not ai)
|
|
|
|
resolve_host();
|
2008-12-14 02:53:05 +00:00
|
|
|
|
2011-03-25 11:26:49 +00:00
|
|
|
try {
|
|
|
|
sockfd = connect();
|
2008-12-14 02:53:05 +00:00
|
|
|
|
2011-03-25 11:26:49 +00:00
|
|
|
command(sockfd, "", recvbuf, "+OK ");
|
|
|
|
command(sockfd, "USER " + get<MP_USER>() + "\r\n", recvbuf, "+OK ");
|
|
|
|
command(sockfd, "PASS " + get<MP_PASS>() + "\r\n", recvbuf, "+OK ");
|
|
|
|
command(sockfd, "STAT\r\n", recvbuf, "+OK ");
|
2008-12-14 02:53:05 +00:00
|
|
|
|
|
|
|
// now we get the data
|
|
|
|
reply = recvbuf + 4;
|
2011-03-25 11:26:49 +00:00
|
|
|
{
|
|
|
|
std::lock_guard<std::mutex> lock(result_mutex);
|
|
|
|
sscanf(reply, "%lu %lu", &result.unseen, &result.used);
|
2008-12-14 02:53:05 +00:00
|
|
|
}
|
2009-10-24 23:49:58 +00:00
|
|
|
|
2011-03-25 11:26:49 +00:00
|
|
|
command(sockfd, "QUIT\r\n", recvbuf, "+OK");
|
2009-10-24 23:49:58 +00:00
|
|
|
|
2011-03-25 11:26:49 +00:00
|
|
|
if (get<MP_COMMAND>().length() > 1 && result.unseen > old_unseen) {
|
2008-12-14 02:53:05 +00:00
|
|
|
// new mail goodie
|
2011-03-25 11:26:49 +00:00
|
|
|
if (system(get<MP_COMMAND>().c_str()) == -1) {
|
2008-12-14 02:53:05 +00:00
|
|
|
perror("system()");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fail = 0;
|
2011-03-25 11:26:49 +00:00
|
|
|
old_unseen = result.unseen;
|
2010-01-03 07:59:24 +00:00
|
|
|
return;
|
2008-12-14 02:53:05 +00:00
|
|
|
}
|
2011-03-25 11:26:49 +00:00
|
|
|
catch(std::runtime_error &e) {
|
|
|
|
if(sockfd != -1)
|
|
|
|
close(sockfd);
|
|
|
|
freeaddrinfo(ai);
|
|
|
|
ai = NULL;
|
|
|
|
|
|
|
|
++fail;
|
|
|
|
if(*e.what())
|
|
|
|
NORM_ERR("Error while communicating with POP3 server: %s", e.what());
|
|
|
|
NORM_ERR("Trying POP3 connection again for %s@%s (try %u/%u)",
|
|
|
|
get<MP_USER>().c_str(), get<MP_HOST>().c_str(), fail+1, retries);
|
|
|
|
sleep(fail); /* sleep more for the more failures we have */
|
|
|
|
}
|
|
|
|
|
|
|
|
if(is_done())
|
|
|
|
return;
|
2008-12-14 02:53:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-24 23:17:30 +00:00
|
|
|
void print_pop3_unseen(struct text_object *obj, char *p, int p_max_size)
|
|
|
|
{
|
2011-03-25 11:26:49 +00:00
|
|
|
struct mail_param_ex *mail = (struct mail_param_ex *)obj->data.opaque;
|
2009-10-24 23:49:58 +00:00
|
|
|
|
|
|
|
if (!mail)
|
|
|
|
return;
|
|
|
|
|
2011-03-25 11:26:49 +00:00
|
|
|
auto cb = conky::register_cb<pop3_cb>(mail->period, *mail, mail->retries);
|
2009-10-24 23:17:30 +00:00
|
|
|
|
2011-03-25 11:26:49 +00:00
|
|
|
snprintf(p, p_max_size, "%lu", cb->get_result_copy().unseen);
|
2009-10-24 23:17:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void print_pop3_used(struct text_object *obj, char *p, int p_max_size)
|
|
|
|
{
|
2011-03-25 11:26:49 +00:00
|
|
|
struct mail_param_ex *mail = (struct mail_param_ex *)obj->data.opaque;
|
2009-10-24 23:49:58 +00:00
|
|
|
|
|
|
|
if (!mail)
|
|
|
|
return;
|
|
|
|
|
2011-03-25 11:26:49 +00:00
|
|
|
auto cb = conky::register_cb<pop3_cb>(mail->period, *mail, mail->retries);
|
2009-10-24 23:17:30 +00:00
|
|
|
|
2011-03-25 11:26:49 +00:00
|
|
|
snprintf(p, p_max_size, "%.1f", cb->get_result_copy().used / 1024.0 / 1024.0);
|
2009-10-24 23:17:30 +00:00
|
|
|
}
|