aboutsummaryrefslogtreecommitdiff
path: root/src/mail.c
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2009-02-24 00:49:40 +0200
committerSergey Poznyakoff <gray@gnu.org.ua>2009-02-24 00:57:16 +0200
commit4213ec5ef9695aa504938c0e764ba9a4f08921b2 (patch)
tree88ac2b2eb01337f0924d687df38b2a163bc94e11 /src/mail.c
parent337a06f32fb530e0e0884fef2f5f630cca9911a1 (diff)
downloadwydawca-4213ec5ef9695aa504938c0e764ba9a4f08921b2.tar.gz
wydawca-4213ec5ef9695aa504938c0e764ba9a4f08921b2.tar.bz2
Initial implementation of daemon mode.
* gconf/gconf-gram.y (string_to_sockaddr_: Take struct gconf_sockaddr as the first argument. * gconf/gconf.h (struct gconf_sockaddr): New data type. * src/job.c, src/net.c, src/pidfile.c: New files. * src/Makefile.am (wydawca_SOURCES): Add job.c, net.c, pidfile.c * src/cmdline.opt: New options: --cron (change semantics), --force, --foreground, --single-process, --spool * src/wydawca.c: New daemon mode. * src/config.c: New statements: spool.alias, daemon, foreground, single-process, wakeup-interval, pidfile, listen * src/directive.c, src/diskio.c, src/gpg.c, src/mail.c, src/null.c, src/process.c, src/triplet.c, src/verify.c, src/vtab.c, src/wydawca.h: use static struct spool wherever feasible. * src/triplet.c: New meta-variable "spool" * tests/etc/wydawca.rcin: Update. * tests/upload-dry.at: Update.
Diffstat (limited to 'src/mail.c')
-rw-r--r--src/mail.c15
1 files changed, 9 insertions, 6 deletions
diff --git a/src/mail.c b/src/mail.c
index 7987819..ea74b8c 100644
--- a/src/mail.c
+++ b/src/mail.c
@@ -106,3 +106,6 @@ mail_finish ()
if (mailer_opened)
- mu_mailer_close (mailer);
+ {
+ mu_mailer_close (mailer);
+ mailer_opened = 0;
+ }
}
@@ -271,3 +274,3 @@ get_recipient (struct access_method *method, struct file_triplet *trp,
{
- *errp = "access method is not configured";
+ *errp = N_("access method is not configured");
return NULL;
@@ -278,3 +281,3 @@ get_recipient (struct access_method *method, struct file_triplet *trp,
{
- *errp = "failed to open access method";
+ *errp = N_("failed to open access method");
return NULL;
@@ -291,3 +294,3 @@ get_recipient (struct access_method *method, struct file_triplet *trp,
{
- *errp = "cannot obtain recipient emails";
+ *errp = N_("cannot obtain recipient emails");
method_close (method, md);
@@ -301,3 +304,3 @@ get_recipient (struct access_method *method, struct file_triplet *trp,
{
- *errp = "cannot obtain recipient emails";
+ *errp = N_("cannot obtain recipient emails");
return NULL;
@@ -352,3 +355,3 @@ do_notify (struct file_triplet *trp, enum notification_event ev,
trp->project,
- notification_event_str (ev), errp);
+ notification_event_str (ev), gettext (errp));
return;

Return to:

Send suggestions and report system problems to the System administrator.