how to change dns, apache default template ?

adrianmak

Verified User
Joined
Jan 30, 2010
Messages
49
I would like to add webmail dns A record in bind and
add webmail.newdomain.com redirection to roundcube url for each of new created account
 
Before I posted my question, I manually add A record and custom apache config for all existing domains in DA.

What is the command for ? is it update for all existing domains ?
Code:
echo "action=rewrite&value=httpd" >> /usr/local/directadmin/data/task.queue
/usr/local/directadmin/dataskq d
 
Yes, it does re-generate users httpd configuration files.
 
Before I posted my question, I manually add A record and custom apache config for all existing domains in DA

If you did it in directadmin (admin level => custom httpd.conf), then the command you posted above won't remove your custom changes made there.
 
Yes, you may use:
Code:
echo "action=rewrite&value=httpd&user=[B]username[/B]" >> /usr/local/directadmin/data/task.queue
/usr/local/directadmin/dataskq d
 
That's actually a very bad idea and webmail should never be set up that way, because passwords should only be sent over an SSL encrypted connection, preferably using TLS 1.2.

I have to agree with this. Don't to it! :) Give customers a https link for your DA+its webapps.

I suppose DA could pressure more on using SSL, but at the end it's the sysadmin that should know/want to do it in the first place.
 
Will DirectAdmin skins honor this automatically in the future, or is it still required to make the skins change?

Thanks.

Jeff
 
Builtin skins do not require manual changes, but still 3rd party skins do. And that part of an article with

SKINS:
replace:
http


with:
|WEBAPPS_SSL|


for any location that has http:// pointing to a local webapps script.
This does not apply to the help button, (help.directadmin.com), so leave that one alone.

is mostly for developers of 3rd party skins.
 
Back
Top