see: https://github.com/postfixadmin/postfixadmin/issues/282 - try and ensure local_part contains an @ on creating a mailbox

pull/277/head
David Goodwin 5 years ago
parent 78764578db
commit 3322b43bb6

@ -217,6 +217,7 @@ class MailboxHandler extends PFAHandler {
protected function beforestore() {
if (isset($this->values['quota']) && $this->values['quota'] != -1) {
$multiplier = Config::read_string('quota_multiplier');
if ($multiplier == 0) { // or empty string, or null, or false...
@ -268,6 +269,16 @@ class MailboxHandler extends PFAHandler {
return true;
}
public function set($values) {
// See: https://github.com/postfixadmin/postfixadmin/issues/282 - ensure the 'local_part' does not contain an @ sign.
$ok = true;
if(isset($values['local_part']) && strpos($values['local_part'], '@')) {
$this->errormsg['local_part'] = Config::lang('pCreate_mailbox_local_part_error');
$ok = false;
}
return $ok && parent::set($values);
}
protected function storemore() {
if ($this->new) {
if (!$this->mailbox_post_script()) {

Loading…
Cancel
Save