1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230
|
/* GNU Mailutils -- a suite of utilities for electronic mail
Copyright (C) 1999-2002, 2005, 2007-2012, 2014-2016 Free Software
Foundation, Inc.
GNU Mailutils 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, or (at your option)
any later version.
GNU Mailutils 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 GNU Mailutils. If not, see <http://www.gnu.org/licenses/>. */
/* ".forward" support for GNU Maidag */
#include "maidag.h"
/* Auxiliary functions */
/* Forward message MSG to given EMAIL, using MAILER and sender address FROM */
static int
forward_to_email (mu_message_t msg, mu_address_t from,
mu_mailer_t mailer, const char *email)
{
mu_address_t to;
int rc;
rc = mu_address_create (&to, email);
if (rc)
{
mu_error (_("%s: cannot create email: %s"), email, mu_strerror (rc));
return 1;
}
rc = mu_mailer_send_message (mailer, msg, from, to);
if (rc)
mu_error (_("Sending message to `%s' failed: %s"),
email, mu_strerror (rc));
mu_address_destroy (&to);
return rc;
}
/* Create a mailer if it does not already exist.*/
int
forward_mailer_create (mu_mailer_t *pmailer)
{
int rc;
if (*pmailer == NULL)
{
rc = mu_mailer_create (pmailer, NULL);
if (rc)
{
const char *url = NULL;
mu_mailer_get_url_default (&url);
mu_error (_("Creating mailer `%s' failed: %s"),
url, mu_strerror (rc));
return 1;
}
rc = mu_mailer_open (*pmailer, 0);
if (rc)
{
const char *url = NULL;
mu_mailer_get_url_default (&url);
mu_error (_("Opening mailer `%s' failed: %s"),
url, mu_strerror (rc));
mu_mailer_destroy (pmailer);
return 1;
}
}
return 0;
}
/* Create *PFROM (if it is NULL), from the envelope sender address of MSG. */
static int
create_from_address (mu_message_t msg, mu_address_t *pfrom)
{
if (!*pfrom)
{
mu_envelope_t envelope;
const char *str;
int status = mu_message_get_envelope (msg, &envelope);
if (status)
{
mu_error (_("cannot get envelope: %s"), mu_strerror (status));
return 1;
}
status = mu_envelope_sget_sender (envelope, &str);
if (status)
{
mu_error (_("cannot get envelope sender: %s"), mu_strerror (status));
return 1;
}
status = mu_address_create (pfrom, str);
if (status)
{
mu_error (_("%s: cannot create email: %s"), str,
mu_strerror (status));
return 1;
}
}
return 0;
}
/* Forward message MSG as requested by file FILENAME.
MYNAME gives local user name. */
enum maidag_forward_result
process_forward (mu_message_t msg, char *filename, const char *myname)
{
int rc;
mu_stream_t file;
size_t size = 0, n;
char *buf = NULL;
enum maidag_forward_result result = maidag_forward_ok;
mu_mailer_t mailer = NULL;
mu_address_t from = NULL;
rc = mu_file_stream_create (&file, filename, MU_STREAM_READ);
if (rc)
{
mu_error (_("%s: cannot open forward file: %s"),
filename, mu_strerror (rc));
return maidag_forward_error;
}
while (mu_stream_getline (file, &buf, &size, &n) == 0 && n > 0)
{
char *p;
mu_rtrim_class (buf, MU_CTYPE_SPACE);
p = mu_str_skip_class (buf, MU_CTYPE_SPACE);
if (*p && *p != '#')
{
if (strchr (p, '@'))
{
if (create_from_address (msg, &from)
|| forward_mailer_create (&mailer)
|| forward_to_email (msg, from, mailer, p))
result = maidag_forward_error;
}
else
{
if (*p == '\\')
p++;
if (strcmp (p, myname) == 0)
{
if (result == maidag_forward_ok)
result = maidag_forward_metoo;
}
else if (deliver_to_user (msg, p, NULL))
result = maidag_forward_error;
}
}
}
mu_address_destroy (&from);
if (mailer)
{
mu_mailer_close (mailer);
mu_mailer_destroy (&mailer);
}
free (buf);
mu_stream_destroy (&file);
return result;
}
static mu_list_t idlist;
/* Check if the forward file FWFILE for user given by AUTH exists, and if
so, use to to forward message MSG. */
enum maidag_forward_result
maidag_forward (mu_message_t msg, struct mu_auth_data *auth, char *fwfile)
{
struct stat st;
char *filename;
enum maidag_forward_result result = maidag_forward_none;
int rc;
if (fwfile[0] != '/')
{
if (stat (auth->dir, &st))
{
if (errno == ENOENT)
/* FIXME: a warning, maybe? */;
else if (!S_ISDIR (st.st_mode))
mu_error (_("%s: not a directory"), auth->dir);
else
mu_error (_("%s: cannot stat directory: %s"),
auth->dir, mu_strerror (errno));
return maidag_forward_none;
}
filename = mu_make_file_name (auth->dir, fwfile);
}
else
filename = strdup (fwfile);
if (!filename)
{
mu_error ("%s", mu_strerror (errno));
return maidag_forward_error;
}
if (!idlist)
mu_list_create (&idlist);
rc = mu_file_safety_check (filename, forward_file_checks,
auth->uid, idlist);
if (rc == 0)
result = process_forward (msg, filename, auth->name);
else if (rc == MU_ERR_EXISTS)
mu_diag_output (MU_DIAG_NOTICE,
_("skipping forward file %s: already processed"),
filename);
else
mu_error (_("ignoring forward file %s: %s"),
filename, mu_strerror (rc));
free (filename);
return result;
}
|