Установка CNAME на другом сервере

На основе документации для File.isDirectory (), это кажется, что можно было включить менеджера безопасности. isDirectory требует, чтобы checkRead разрешение было включено, и можно протестировать это сами при помощи чего-то как следующее (отредактируйте по мере необходимости):

SecurityManager security = System.getSecurityManager();
if(security)
    if(security.checkRead(FILE_PATH_HERE))
        // we have permission
    else
        // no permission

Добавление каталога к списку позволенных каталогов может или не может быть в Вашем списке вещей сделать. Существуют десятки ссылок Google с инструкциями, если это верно. То же идет, если требуется отключить СМ полностью.

1
задан 21 January 2013 в 14:22
1 ответ

It looks like your correct settings should be subdomains of cbn.net.id.

http://portal.cbn.net.id/cbprtl/cybertech/detail.aspx?x=Tips+And+Tricks&y=cybertech|5|0|9|1663

POP and IMAP currently point to the same IP address, so at the moment, if you point mail.earthline.info at CNAME pop.cbn.net.id and use mail.earthline.info in your mail client to connect to both POP and IMAP, it will work. There's no guarantee that this will continue to work in the future.

A better idea would be to set up two subdomains:

pop.earthline.info. CNAME pop.cdb.net.id.
imap.earthline.info. CNAME imap.cdb.net.id.

And use one for POP and the other for IMAP. That way it should continue to work in the future.

Their SMTP servers are different, so you will have to set those up individually.

smtp.earthline.info. CNAME smtp.cdb.net.id.
smtps.earthline.info. CNAME smtps.cdb.net.id.

cbn.net.id don't use the mail subdomain so you don't need it either.


One last thing: just setting your DNS records like this isn't quite enough to make everything work. The SMTP servers at smtp.cbn.net.id have to be configured to accept mail for your domain and either store or forward it for you. I assume you have done this in their admin panel or as part of your account.

2
ответ дан 3 December 2019 в 21:37

Теги

Похожие вопросы