X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=citadel%2Fmodules%2Fsmtp%2Fsmtp_util.h;h=7666a34dfc3980abe56ca9ce833867faaf493c80;hb=fd794bb7f3c995998fe2b525fa02cf1a366290d9;hp=1da497de0b3c4f41eb69b1cc0ace38a9d92c7a98;hpb=8932444317c238704ce25ca3ddfcc3cc65f63dfa;p=citadel.git diff --git a/citadel/modules/smtp/smtp_util.h b/citadel/modules/smtp/smtp_util.h index 1da497de0..7666a34df 100644 --- a/citadel/modules/smtp/smtp_util.h +++ b/citadel/modules/smtp/smtp_util.h @@ -20,21 +20,16 @@ * The VRFY and EXPN commands have been removed from this implementation * because nobody uses these commands anymore, except for spammers. * - * Copyright (c) 1998-2012 by the citadel.org team + * Copyright (c) 1998-2013 by the citadel.org team * - * This program is open source software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License version 3. - * - * + * This program is open source software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 3. * - * 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. + * 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. * - * - * - * */ const char *smtp_get_Recipients(void); @@ -52,7 +47,9 @@ typedef struct _citsmtp { /* Information about the current session */ int is_lmtp; int is_unfiltered; int is_msa; -}citsmtp; + StrBuf *preferred_sender_email; + StrBuf *preferred_sender_name; +} citsmtp; #define SMTP ((citsmtp *)CC->session_specific_data)