hello there...
  after running james as mail server...i configure outlook express for my 
client mail...i've create gmail and enable pop in outlook express...
   
  Present Config.xml configuration 
  -----------------------------------------
  <servernames autodetect="true" autodetectIP="true">
  <!-- CONFIRM? -->
  <servername>localhost</servername>
  </servernames>
   
  <dnsserver>
  <servers>
  <!--Enter ip address of your DNS server, one IP address per server -->
  <!-- element. -->
  <!--
  <server>202.188.0.133</server>
  <server>202.188.1.5</server>
  -->
  </servers>
  <!-- Change autodiscover to false if you would like to turn off autodiscovery 
-->
  <!-- and set the DNS servers manually in the <servers> section -->
  <autodiscover>true</autodiscover>
  <authoritative>false</authoritative>
  </dnsserver>
   
  <pop3server enabled="true">
  <!-- port 995 is the well-known/IANA registered port for POP3S ie over 
SSL/TLS -->
  <!-- port 110 is the well-known/IANA registered port for Standard POP3 -->
  <port>995</port>
  <!-- Uncomment this if you want to bind to a specific inetaddress -->
  <!--
  <bind> </bind>
  -->
  <!-- Uncomment this if you want to use TLS (SSL) on this port -->
  <!--
  <useTLS>true</useTLS>
  -->
  <handler>
  <!-- This is the name used by the server to identify itself in the POP3 -->
  <!-- protocol. If autodetect is TRUE, the server will discover its -->
  <!-- own host name and use that in the protocol. If discovery fails, -->
  <!-- the value of 'localhost' is used. If autodetect is FALSE, James -->
  <!-- will use the specified value. -->
  <helloName autodetect="true">myMailServer</helloName>
  <connectiontimeout>120000</connectiontimeout>
  </handler>
  </pop3server>
   
  <smtpserver enabled="true">
  <!-- port 25 is the well-known/IANA registered port for SMTP -->
  <port>465</port>
  <!-- Uncomment this if you want to bind to a specific inetaddress -->
  <!-- Please NOTE: you should add this IP also to your RemoteAddrNotInNetwork 
-->
  <!-- in order to avoid relay check for locallly generated bounces -->
  <!--
  <bind> </bind>
  -->
  <!-- Uncomment this if you want to use TLS (SSL) on this port -->
  <!--
  <useTLS>true</useTLS>
  -->
  <handler>
  <!-- This is the name used by the server to identify itself in the SMTP -->
  <!-- protocol. If autodetect is TRUE, the server will discover its -->
  <!-- own host name and use that in the protocol. If discovery fails, -->
  <!-- the value of 'localhost' is used. If autodetect is FALSE, James -->
  <!-- will use the specified value. -->
  <helloName autodetect="true">myMailServer</helloName>
  <connectiontimeout>360000</connectiontimeout>
  <!-- Uncomment this if you want to require SMTP authentication.
  supported values:
  true: required but announced only to not authorizedAddresses
  false: don't use AUTH
  announce: like true, but always announce AUTH capability to clients
  The correct behaviour per RFC value would be false or announce
  but we still support true for backward compatibility and because
  some webmail client fails when AUTH is announced but no authentication
  information has been provided
  -->
  <!--
  <authRequired>true</authRequired>
  -->
  <!-- CHECKME! -->
  <!-- Uncomment this if you want to authorize specific addresses/networks.
  If you use SMTP AUTH, addresses that match those specified here will
  be permitted to relay without SMTP AUTH. If you do not use SMTP
  AUTH, and you specify addreses here, then only addresses that match
  those specified will be permitted to relay.
  Addresses may be specified as a an IP address or domain name, with an
  optional netmask, e.g.,
  127.*, 127.0.0.0/8, 127.0.0.0/255.0.0.0, and localhost/8 are all the same
  See also the RemoteAddrNotInNetwork matcher in the transport processor.
  You would generally use one OR the other approach.
  -->
  <authorizedAddresses>127.0.0.0/8</authorizedAddresses>
  <!-- Uncomment this if you want to verify sender addresses, ensuring that -->
  <!-- the sender address matches the user who has authenticated. -->
  <!-- This prevents a user of your mail server from acting as someone else -->
  <!--
  <verifyIdentity>true</verifyIdentity>
  -->
  <!-- This sets the maximum allowed message size (in kilobytes) for this -->
  <!-- SMTP service. If unspecified, the value defaults to 0, which means no 
limit. -->
  <maxmessagesize>0</maxmessagesize>
  <!-- The configuration handler chain -->
  <handlerchain>
  
  <!-- The connect handler configuration -->
  <!-- 
  <handler class="org.apache.james.smtpserver.DNSRBLHandler">
  <rblservers>
  <whitelist> query.bondedsender.org </whitelist>
  <blacklist> sbl-xbl.spamhaus.org </blacklist>
  <blacklist> list.dsbl.org </blacklist>
  <blacklist> dul.dnsbl.sorbs.net </blacklist>
  <blacklist> relays.ordb.org </blacklist>
  </rblservers>
  </handler> 
  --> 
  
  <!-- The command handler configuration -->
  <handler command="HELO" 
class="org.apache.james.smtpserver.HeloCmdHandler"></handler>
  <handler command="EHLO" 
class="org.apache.james.smtpserver.EhloCmdHandler"></handler>
  <handler command="AUTH" 
class="org.apache.james.smtpserver.AuthCmdHandler"></handler>
  <handler command="VRFY" 
class="org.apache.james.smtpserver.VrfyCmdHandler"></handler>
  <handler command="EXPN" 
class="org.apache.james.smtpserver.ExpnCmdHandler"></handler>
  <handler command="MAIL" 
class="org.apache.james.smtpserver.MailCmdHandler"></handler>
  <handler command="RCPT" 
class="org.apache.james.smtpserver.RcptCmdHandler"></handler>
  <handler command="DATA" 
class="org.apache.james.smtpserver.DataCmdHandler"></handler>
  <handler command="RSET" 
class="org.apache.james.smtpserver.RsetCmdHandler"></handler>
  <handler command="HELP" 
class="org.apache.james.smtpserver.HelpCmdHandler"></handler>
  <handler command="QUIT" 
class="org.apache.james.smtpserver.QuitCmdHandler"></handler>
  
  <!-- The message handler configuration -->
  <!-- 
  <handler class="org.apache.james.smtpserver.AddHeaderHandler">
  <headername>SPF-test</headername>
  <headervalue>passed</headervalue>
  </handler>
  -->
  </handlerchain>
  
  </handler>
  </smtpserver>
   
   
  Present OE6 configuration 
--------------------------- 
Servers : Incoming mail (POP3) : localhost (james mail server)
Outgoing mail (SMTP) : localhost (james mail server)

Outgoing Mail Server : My server requires authentication (Yes) 

Advanced : Server Port Numbers 
Outgoing mail (SMTP) : 465 SSL (i also try port 25 but didnt work)
Incoming mail (POP3) : 995 SSL (i also try port 110 but didnt work)


System Configuration: 
----------------------- 
WinXP 
IE6 / Firefox 1.0 
OE 6 
Gmail
   
  but i'v error while running or start the outlook express...
   
  Error while starting OE6:
  ---------------------------------
  The connection to the server has failed. Account: '[EMAIL PROTECTED]', 
Server: 'localhost', Protocol: POP3, Port: 995, Secure(SSL): Yes, Socket Error: 
10061, Error Number: 0x800CCC0E
   
  so please help me on this...do gmail & outlook as a client mail can connected 
to james?should i configure in config.xml and where should i change?help me 
please....

                        
---------------------------------
 Yahoo! Mail - Helps protect you from nasty viruses.

Reply via email to