Bernd Wurst commited on 2014-02-12 18:12:07
Zeige 1 geänderte Dateien mit 4 Einfügungen und 0 Löschungen.
... | ... |
@@ -380,6 +380,10 @@ function save_vmail_account($account) |
380 | 380 |
$quote = "attach"; |
381 | 381 |
elseif ($ar['quote'] == NULL) |
382 | 382 |
$quote = NULL; |
383 |
+ if (! check_emailaddr($ar['fromaddr'])) { |
|
384 |
+ input_error("Die Absenderadresse sieht ungültig aus. Es wird Ihre E-Mail-Adresse benutzt!"); |
|
385 |
+ $ar['fromaddr'] = NULL; |
|
386 |
+ } |
|
383 | 387 |
$query = "REPLACE INTO mail.vmail_autoresponder (account, valid_from, valid_until, fromname, fromaddr, subject, message, quote) ". |
384 | 388 |
"VALUES (:id, :valid_from, :valid_until, :fromname, :fromaddr, :subject, :message, :quote)"; |
385 | 389 |
$args = array(":id" => $id, |
386 | 390 |