Changes

From SME Server
Jump to navigationJump to search
Line 1: Line 1:  +
{{Level|Medium}}
 
==Overview==
 
==Overview==
   Line 45: Line 46:  
  </clientConfig>
 
  </clientConfig>
   −
In above sample you need to change all mail.linuxfacil.net strings with your own server.<br>
+
In above sample you need to change all '''mail.linuxfacil.net''' strings with your own server.<br>
You should change all linuxfacil.net references to your own domain. <br>
+
You should change all '''linuxfacil.net''' references to your own domain. <br>
   −
I have configurated the smtp and imap on SME server using same hostname: mail.linuxfacil.net
+
 
 +
=== On SME servers ===
 +
I have configurated the smtp and imap on SME server using same hostname: '''mail.linuxfacil.net'''
 +
 
 +
So I create a new directory on Primary site. See below:
 +
 
 +
<pre>
 +
[root@rinoceronte ~]# ls -la /home/e-smith/files/ibays/Primary/html/mail/
 +
total 12
 +
drwxr-sr-x 2 root  shared 4096 Mar  2  2013 .
 +
drwxr-s--- 4 admin shared 4096 Nov 18 23:36 ..
 +
-rw-r--r-- 2 root  shared 1339 Mar  2  2013 config-v1.1.xml
 +
</pre>
 +
 
 +
Create a file named  '''config-v1.1.xml'''  (you cannot change the name!) and use the config sample above (replacing all "linuxfacil.net" with your own domain) as content.
 +
 
 +
You can create file using VI or any other text editor you know how to use!
 +
 
 +
The permissions must include READ to everyone, nothing more is required!
 +
 
 +
 
 +
To create a template on SME8, do this:
 +
<pre>
 +
mkdir -p  /etc/e-smith/templates-custom/home/e-smith/files/ibays/Primary/html/mail/config-v1.1.xml/
 +
echo >>/etc/e-smith/templates-custom/home/e-smith/files/ibays/Primary/html/mail/config-v1.1.xml/Content  <<FINAL
 +
{
 +
my $COMPANYNAME = $ldap{defaultCompany};
 +
my $DOMAINNAME = $DomainName;
 +
 
 +
    $OUT .=<<FIM
 +
 
 +
<?xml version="1.0" encoding="UTF-8"?>
 +
<clientConfig version="1.1">
 +
  <emailProvider id="$DOMAINNAME">
 +
    <domain>$DOMAINNAME</domain>
 +
    <displayName>$COMPANYNAME</displayName>
 +
    <displayShortName>$COMPANYNAME</displayShortName>
 +
    <incomingServer type="imap">
 +
      <hostname>mail.$DOMAINNAME</hostname>
 +
      <port>993</port>
 +
      <socketType>SSL</socketType>
 +
      <authentication>password-cleartext</authentication>
 +
      <username>%EMAILLOCALPART%</username>   
 +
    </incomingServer>
 +
  <outgoingServer type="smtp">
 +
    <hostname>mail.$DOMAINNAME</hostname>
 +
    <port>465</port>
 +
    <socketType>SSL</socketType>
 +
    <authentication>password-cleartext</authentication>
 +
    <username>%EMAILLOCALPART%</username>
 +
  </outgoingServer>
 +
  <documentation url="http://kundenservice.freenet.de/hilfe/email/programme/config/index.html">
 +
    <descr lang="pt-br">Páina de configuracoes Generica</descr>
 +
    <descr lang="en">Generic settings page</descr>
 +
  </documentation>
 +
  <documentation url="http://kundenservice.freenet.de/hilfe/email/programme/config/thunderbird/imap-thunderbird/imap/index.html">
 +
    <descr lang="pt-br">Configuracoes do Thunderbird ESR para IMAP</descr>
 +
    <descr lang="en">Thunderbird ESR IMAP settings</descr>
 +
  </documentation>
 +
</emailProvider>
 +
</clientConfig>
 +
 
 +
FIM
 +
}
 +
FINAL
 +
</pre>
 +
[[Category:Howto]]
 +
[[Category:Medium]]

Navigation menu