Version 1.20.2
Released: 2003-11-21
new
Page number at the bottom of tables as well as the topPage number at the bottom of tables as well as the top to speed up finding things. Only on pages that usually have a lot of data like show users, show emails etc...
new
Ability to specify the "From" header for new-account emailsAbility to specify the "From" header for new-account emails
The setting will be located in:
User Panel -> Account Info / Stats
new
Allow email pipingAllow a forwarder like:
"|/some/command -o option ..."
new
Virtual Email API for passwords and listing.API for virtual email accounts. List and change passwords.
Email Users can now change their passwords without the need of a webmaster:
/CMD_CHANGE_EMAIL_PASSWORD
note, if you include the form value "api", you will get url encoded results.
if you include the form value "redirect", you will be redirected to it's value upon the successful password change.
Misc api functions for DA Users
/CMD_API_POP
action=list&domain=domain.com
returns
list[]=bob&list[]=fred&list[]=emailuser
action=create&domain=domain.com&user=emailuser&passwd=password"a=10
creates an email account
action=delete&domain=domain.com&user=emailuser
delete an email account
they return standard api results (error=1&text=some text&details=more text)
Feature can be disabled with:
email_ftp_password_change=0
in the directadmin.conf, in DA 1.41.0.
#documentation added June 24, 2014
To suspend an account:
action=delete&suspend=anytext&user=emailuser&domain=domain.com
new
Domain Pointers now support Email AliasesIf you have a domain pointer:
virtual.com -> real.com
now when the virtual.com pointer is created, it will create the required setup to forward email from:
email@virtual.com -> email@real.com
The way it works isn't forwarding at all, but using symlinks, exim sees all the alias and passwd data from real.com through a symbolic link virtual.com. This makes it very easy to add email aliases.
/etc/virtual/virtual.com -> real.com
/var/spool/virtual/virtual.com -> real.com
fixed
Tar goes into an infinite loop if the destination directory is deleted.When backing up the apache logs, DirectAdmin calls "tar czf .. " to compress the apache logs. If the destination folder doesn't exist (/home/username/domains/domain.com/logs) tar goes into an infinite loop and eats up the cpu's resources. This fix will do a check to make sure the directory exists.
fixed
Allow SSL chained certificatesAllow SSL chains with more than 1 certificate.
fixed
Table sorting and advanced search with page numbersFix table sorting with page numbers. Also bolded the current sorted column
fixed
SKIN javascript bug for SSL certificatesSKINS:
user/ssl.html
change document.all to document.info
old:
function setRequest(onoff)
{
if (document.all)
{
with (document.info)
new:
function setRequest(onoff)
{
if (document.info)
{
with (document.info)
fixed
Add /etc/virtual to open_base_dirAdded /etc/virtual to the open_base_dir for the php settings in the virtual_host*.conf templates. Required so that UebiMiau can check the /etc/virtual/domainowners file.
fixed
Mailing list can't delete email because of special charactersSome browsers dont' like the special html characters and are sending them as the characters, not the actual email value. Fix will not use special characters for the selected value, on the displayed value.
fixed
Move redirect link into /var/www/html/redirect.phpThis is a result of the open_base_dir recently added. This will allow /config to redirect to the server
fixed
Change proftpd to reread instead of reloadChange proftpd to reread instead of reload so people don't get disconnected.