X-Git-Url: https://git.adam-barratt.org.uk/?p=mirror%2Fuserdir-ldap-cgi.git;a=blobdiff_plain;f=update.cgi;h=d1aa73ab35c6da24a06dae0f38e4839ff46fe1f0;hp=7dd776b5672a43e6548ea2e51367828a90ba8f15;hb=7f1fadc57026957fd2ea1c0e520a22b047f2aa24;hpb=7d4df26c66fcce393db4f57374f92ed9407c43dd diff --git a/update.cgi b/update.cgi index 7dd776b..d1aa73a 100755 --- a/update.cgi +++ b/update.cgi @@ -1,6 +1,6 @@ #!/usr/bin/perl -# $Id: update.cgi,v 1.12 2006/12/22 08:58:50 rmurray Exp $ +# $Id: update.cgi,v 1.13 2006/12/28 02:44:02 rmurray Exp $ # (c) 1999 Randolph Chung. Licensed under the GPL. # (c) 2006 Ryan Murray. Licensed under the GPL. @@ -80,6 +80,18 @@ if (!($query->param('doupdate'))) { $data{staddress} = $entry->{postaladdress}->[0]; $data{staddress} =~ s/\$/\n/; $data{countryname} = &Util::LookupCountry($data{c}); + + if ($data{mailgreylisting} eq "TRUE") { + $data{mailgreylisting} = " checked"; + } else { + $data{mailgreylisting} = ""; + } + + if ($data{mailcallout} eq "TRUE") { + $data{mailcallout} = " checked"; + } else { + $data{mailcallout} = ""; + } $data{email} = join(", ", @{$entry->{emailforward}}); @@ -162,7 +174,18 @@ if (!($query->param('doupdate'))) { my ($lat, $long); ($lat, $long) = &Util::CheckLatLong($query->param('latitude'), $query->param('longitude')); - + my ($greylisting, $callout); + + $greylisting = $query->param('mailgreylisting'); + if (!$greylisting or $greylisting ne "TRUE") { + $greylisting = "FALSE"; + } + + $callout = $query->param('mailcallout'); + if (!$callout or $callout ne "TRUE") { + $callout = "FALSE"; + } + &Util::LDAPUpdate($ldap, $editdn, 'postalAddress', $newstaddress); &Util::LDAPUpdate($ldap, $editdn, 'l', $query->param('l')); &Util::LDAPUpdate($ldap, $editdn, 'latitude', $lat); @@ -182,6 +205,8 @@ if (!($query->param('doupdate'))) { &Util::LDAPUpdate($ldap, $editdn, 'gender', $gender); &Util::LDAPUpdate($ldap, $editdn, 'birthDate', $query->param('birthdate')) if $bd_ok; &Util::LDAPUpdate($ldap, $editdn, 'mailDisableMessage', $query->param('maildisablemessage')); + &Util::LDAPUpdate($ldap, $editdn, 'mailCallout', $callout); + &Util::LDAPUpdate($ldap, $editdn, 'mailGreylisting', $greylisting); # when we are done, reload the page with the updated details. my $url = "https://$ENV{SERVER_NAME}/$config{webupdateurl}?id=$id&authtoken=$authtoken&editdn=";