summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 82263c1)
raw | patch | inline | side by side (parent: 82263c1)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 25 Jul 2006 04:54:20 +0000 (04:54 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Tue, 25 Jul 2006 04:54:20 +0000 (04:54 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@4280 594d385d-05f5-0310-b6e9-bd551577e9d8
plugins/personal/mail/class_mailAccount.inc | patch | blob | history | |
plugins/personal/mail/generic.tpl | patch | blob | history |
diff --git a/plugins/personal/mail/class_mailAccount.inc b/plugins/personal/mail/class_mailAccount.inc
index c24707e8e180609735fe70d52273b6a0fb9633fc..3742daba541caa6d0a73c2cdc0dbd8de73949748 100644 (file)
/* Finished adding of locals? */
if (isset($_POST['add_locals_finish'])){
- echo "CHECK ME LOCAL ADD ACLS";
+ /* Check if we are able to write gosaMailForwardingAddress */
+ if($this->acl_is_writeable("gosaMailForwardingAddress")){
/* Walk through list of forwarders, ignore own addresses */
foreach ($_POST['local_list'] as $val){
$this->addForwarder($val);
$this->is_modified= TRUE;
}
+ }
+ }
$this->forward_dialog= FALSE;
$this->dialog= FALSE;
}
}
if ($valid){
- /* Add it */
-
- echo "CHECK ME ADD CHECK FOR gosaMailForwardingAddress ACLS BLAA";
-
- $this->addForwarder ($address);
- $this->is_modified= TRUE;
+ /* Add it, if we are able to write gosaMailForwardingAddress */
+ if($this->acl_is_writeable("gosaMailForwardingAddress")){
+ $this->addForwarder ($address);
+ $this->is_modified= TRUE;
+ }
}
}
}
/* Delete forward email addresses */
if (isset($_POST['delete_forwarder'])){
-
- echo "ADD CHECK for GOSA forwarder address";
-
- $this->delForwarder ($_POST['forwarder_list']);
+ $this->delForwarder ($_POST['forwarder_list']);
}
-
- /* Alternate address handling */
/* Add alternate email addresses */
if (isset($_POST['add_alternate'])){
- echo "CHECK ME add check for alternative mail address add";
-
- $valid= FALSE;
- if (!is_email($_POST['alternate_address'])){
- if ($this->is_template){
- if (!(is_email($_POST['alternate_address'], TRUE))){
- print_red (_("You're trying to add an invalid email address to the list of alternate addresses."));
- } else {
- $valid= TRUE;
- }
- } else {
+ $valid= FALSE;
+ if (!is_email($_POST['alternate_address'])){
+ if ($this->is_template){
+ if (!(is_email($_POST['alternate_address'], TRUE))){
print_red (_("You're trying to add an invalid email address to the list of alternate addresses."));
+ } else {
+ $valid= TRUE;
}
-
} else {
- $valid= TRUE;
+ print_red (_("You're trying to add an invalid email address to the list of alternate addresses."));
}
- if ($valid && ($user= $this->addAlternate ($_POST['alternate_address'])) != ""){
- $ui= get_userinfo();
- if ($user != $ui->username){
- print_red (_("The address you're trying to add is already used by user")." '$user'.");
- }
+ } else {
+ $valid= TRUE;
+ }
+
+ if ($valid && ($user= $this->addAlternate ($_POST['alternate_address'])) != ""){
+ $ui= get_userinfo();
+ if ($user != $ui->username){
+ print_red (_("The address you're trying to add is already used by user")." '$user'.");
}
}
}
/* Delete alternate email addresses */
if (isset($_POST['delete_alternate']) && isset($_POST['alternates_list'])){
-
- echo "CHECK ME remove alternate mail addresses ";
-
- $this->delAlternate ($_POST['alternates_list']);
+ $this->delAlternate ($_POST['alternates_list']);
}
/* Add entry to forwarder list */
function addForwarder($address)
{
- $this->gosaMailForwardingAddress[]= $address;
- $this->gosaMailForwardingAddress= array_unique ($this->gosaMailForwardingAddress);
- sort ($this->gosaMailForwardingAddress);
- reset ($this->gosaMailForwardingAddress);
- $this->is_modified= TRUE;
+ if($this->acl_is_writeable("gosaMailForwardingAddress")){
+ $this->gosaMailForwardingAddress[]= $address;
+ $this->gosaMailForwardingAddress= array_unique ($this->gosaMailForwardingAddress);
+ sort ($this->gosaMailForwardingAddress);
+ reset ($this->gosaMailForwardingAddress);
+ $this->is_modified= TRUE;
+ }else{
+ print_red(_("You are not allowed to write mail forwarding."));
+ }
}
/* Remove list of addresses from forwarder list */
function delForwarder($addresses)
{
- $this->gosaMailForwardingAddress= array_remove_entries ($addresses, $this->gosaMailForwardingAddress);
- $this->is_modified= TRUE;
+ if($this->acl_is_writeable("gosaMailForwardingAddress")){
+ $this->gosaMailForwardingAddress= array_remove_entries ($addresses, $this->gosaMailForwardingAddress);
+ $this->is_modified= TRUE;
+ }else{
+ print_red(_("You are not allowed to write mail forwarding."));
+ }
}
/* Add given mail address to the list of alternate adresses ,
- check if this mal address is used, skip adding in this case */
+ check if this mal address is used, skip adding in this case */
function addAlternate($address)
{
- $ldap= $this->config->get_ldap_link();
- $address= strtolower($address);
-
- /* Is this address already assigned in LDAP? */
- $ldap->cd ($this->config->current['BASE']);
- $ldap->search ("(&(objectClass=gosaMailAccount)(|(mail=$address)"."(gosaMailAlternateAddress=$address)))", array("uid"));
+ if($this->acl_is_writeable("gosaMailAlternateAddress")){
+ $ldap= $this->config->get_ldap_link();
+ $address= strtolower($address);
- if ($ldap->count() > 0){
- $attrs= $ldap->fetch ();
- return ($attrs["uid"][0]);
- }
+ /* Is this address already assigned in LDAP? */
+ $ldap->cd ($this->config->current['BASE']);
+ $ldap->search ("(&(objectClass=gosaMailAccount)(|(mail=$address)"."(gosaMailAlternateAddress=$address)))", array("uid"));
- /* Add to list of alternates */
- if (!in_array($address, $this->gosaMailAlternateAddress)){
- $this->gosaMailAlternateAddress[]= $address;
- $this->is_modified= TRUE;
- }
+ if ($ldap->count() > 0){
+ $attrs= $ldap->fetch ();
+ return ($attrs["uid"][0]);
+ }
+
+ /* Add to list of alternates */
+ if (!in_array($address, $this->gosaMailAlternateAddress)){
+ $this->gosaMailAlternateAddress[]= $address;
+ $this->is_modified= TRUE;
+ }
- sort ($this->gosaMailAlternateAddress);
- reset ($this->gosaMailAlternateAddress);
- return ("");
+ sort ($this->gosaMailAlternateAddress);
+ reset ($this->gosaMailAlternateAddress);
+ return ("");
+ }else{
+ print_red(_("You are not allowed to write mail alternate address."));
+ }
}
function delAlternate($addresses)
{
- $this->gosaMailAlternateAddress= array_remove_entries ($addresses,
- $this->gosaMailAlternateAddress);
- $this->is_modified= TRUE;
+ if($this->acl_is_writeable("gosaMailAlternateAddress")){
+ $this->gosaMailAlternateAddress= array_remove_entries ($addresses,$this->gosaMailAlternateAddress);
+ $this->is_modified= TRUE;
+ }else{
+ print_red(_("You are not allowed to write mail alternate address."));
+ }
}
function make_name($attrs)
index 646ae9d74fabfce4a419cf91f70c97913d010ee0..ec5c56522ebdaf64967bf9918e23bc11f344dc31 100644 (file)
</td>
<td style="vertical-align:top;">
-{render acl=gosaMailDeliveryModesACL}
+{render acl=$gosaMailDeliveryModesACL}
<input type=checkbox name="use_spam_filter" value="1" {$use_spam_filter} title="{t}Select if you want to filter this mails through spamassassin{/t}">
{/render}
<label for="gosaSpamSortLevel">{t}Move mails tagged with spam level greater than{/t}</label>