/*
Copyright (C) 2004 Aaron Stone aaron at serendipity dot cx
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 2 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
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/*
* timsieved.c
*
* main prg for tims daemon
*/
#include "dbmail.h"
#define THIS_MODULE "timsieved"
#define PNAME "dbmail/timsieved"
/* this is write-once read-many, so we'll do it once for all children. */
const char *sieve_extensions = NULL;
int main(int argc, char *argv[])
{
serverConfig_t config;
int result;
g_mime_init(0);
openlog(PNAME, LOG_PID, LOG_MAIL);
//fixes valgrind Conditional jump or move depends on uninitialised value(s)
memset(&config, 0, sizeof(serverConfig_t));
result = serverparent_getopt(&config, "SIEVE", argc, argv);
if (result == -1)
goto shutdown;
if (result == 1) {
serverparent_showhelp("dbmail-timsieved",
"This daemon provides Tim's Sieve Daemon services.\n");
goto shutdown;
}
config.ClientHandler = tims_handle_connection;
/* Get the Sieve capabilities. This may also cause the
* program to bomb out if Sieve support was not compiled in. */
sieve_extensions = sort_listextensions();
if (sieve_extensions == NULL) {
fprintf(stderr, "dbmail-timsieved: error loading Sieve extensions.\n\n");
result = 1;
goto shutdown;
}
result = serverparent_mainloop(&config, "SIEVE", "dbmail-timsieved");
shutdown:
g_mime_shutdown();
config_free();
TRACE(TRACE_INFO, "exit");
return result;
}
syntax highlighted by Code2HTML, v. 0.9.1