Expand my Community achievements bar.

Learn about Edge Delivery Services in upcoming GEM session

How to configure an email endpoint

Avatar

Level 4
Hi,



I am trying to configure an emailendpoint for my process but I'm having trouble with retrieving some email information.

Is this documented somewhere?

One problem at the moment is to retrieve the SendDate or ReceiveDate from an email. How do I make the mappings for this?



The other one is when I configure the emailendpoint to retrieve Attachments, I did this by mapping *.* to an Map-collection. Now I can get the attachments stored in the Map-collection, this works fine. But when there are no attachments at the email I keep getting an NullPointerException and my process is not invoked. But my process needs to be invoked with or without attachments.



Thanks in advance,
32 Replies

Avatar

Level 10
You probably get a NPE because in your process you're extracting the value from the map but the map is null when there is no attachment.



You'll probably need to get the size of the map first and then execute your code only if the size is greater than 0. There is a get-size (or something like that) under the Collection functions section in the xPath builder that can help you with that.



I think your process gets invoked, but it stalls on one of the operation.



Jasmin

Avatar

Level 4
Thanks Jasmin.



I will try that but I even get that NPE when the only component in my process is a Variable Logger. And I only whant to display the values of my email in the log file. So I'm not actualy using my map yet and I'm already getting that error.



Have you got any idea on how to get the SendDate or ReceiveDate from an email?



Regards,



RonnyR

Avatar

Level 10
Can you check from the adminui (under Services/Process Management) if the item is stalled and on which step. I've done that before and that worked even if I didn't have attachments.



I'm not sure about the SendDate and ReceiveDate.



I'll do some more investigations.



Jasmin

Avatar

Former Community Member
For whatever reason (probably a bug); dropping the variable-logger in ES onto your process and not configuring it to log to anything will always throw a NPE. To prevent this you need to configure the logger properties to either log to either system-logger, standard-out, or to directory.



Cheers,



Lachlan



http://www.avoka.com

Avatar

Level 4
The variable-logger is configured to system-logger and directory.



When I don't try and retrieve the attachments and only retrieve the subject I do not get the NPE-error. Only when I try and retrieve the attachments and there are non in the email.



Grz,

Avatar

Level 4
Jasmin,



Nothing is shown in Process Management.



Lachlan,



I even deleted the variable-logger and only had a set-value component in my process wiche did nothing with the map and I still get the error.



Grz,



RonnyR

Avatar

Level 4
Hi,



Is there nobody who can help me?



RonnyR

Avatar

Level 10
Can you post the exact error from the application server log.



Jasmin

Avatar

Former Community Member
There is a retrieved email attrributes tab in the receive email component. This has the receive date/send date amongst others. There is a attribute called attachment count, you branch based on this attributes value IE if this is greater than 0 then continue with your process

Hope this helps

Avatar

Level 4
Hi WorkflowUser,



I know about the retrieve email component, I am using it at the moment.

But we need to make our process so that it uses the emailendpoint and not the retrieve email component.



Because our proces needs to trigger every 30 seconds to read emails we would need to use the emailendpoint. If we use the emailretrieve component we need to make a java-application that trigger our process every 30 seconds. The problem is that our client don't want a java code. They want the entire process to work using only Livecycle components.



Therefore it is importend for us to get the emailendpoint working.



Grz,

Avatar

Level 10
Any update on that stack trace?



Jasmin

Avatar

Level 4
Jasmin,



I'm working on side at a costumer this week. I will get one as soon as I'm back in the office.



Grz,



RonnyR

Avatar

Level 4
Jasmin,



Did you get it working?



Grz,

Avatar

Level 10
I haven't tried it in a while, but I had something similar working a while ago.



Jasmin

Avatar

Level 4
Jasmin,<br /><br />Below the server log with the NPE:<br /><br />2007-12-17 09:52:22,563 INFO [STDOUT] java.lang.NullPointerException<br />2007-12-17 09:52:22,563 INFO [STDOUT] at com.adobe.idp.dsc.provider.service.email.impl.EmailConfigurationReader.getDocumentMap(EmailConfigurationReader.java:163)<br />2007-12-17 09:52:22,563 INFO [STDOUT] at com.adobe.idp.dsc.provider.service.email.impl.EmailConfigurationReader.readJobConfiguration(EmailConfigurationReader.java:112)<br />2007-12-17 09:52:22,563 INFO [STDOUT] at com.adobe.idp.dsc.provider.service.email.impl.EmailConfigurationReader.<init>(EmailConfigurationReader.java:61)<br />2007-12-17 09:52:22,563 INFO [STDOUT] at com.adobe.idp.dsc.provider.service.email.impl.scan.EmailScanJobImpl.createInputParamMap(EmailScanJobImpl.java:430)<br />2007-12-17 09:52:22,563 INFO [STDOUT] at com.adobe.idp.dsc.provider.service.email.impl.scan.EmailScanJobImpl.processInputs(EmailScanJobImpl.java:147)<br />2007-12-17 09:52:22,563 INFO [STDOUT] at com.adobe.idp.dsc.provider.service.email.impl.scan.EmailScanJobImpl.execute(EmailScanJobImpl.java:98)<br />2007-12-17 09:52:22,563 INFO [STDOUT] at sun.reflect.GeneratedMethodAccessor6211.invoke(Unknown Source)<br />2007-12-17 09:52:22,563 INFO [STDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)<br />2007-12-17 09:52:22,563 INFO [STDOUT] at java.lang.reflect.Method.invoke(Method.java:585)<br />2007-12-17 09:52:22,563 INFO [STDOUT] at com.adobe.idp.dsc.component.impl.DefaultPOJOInvokerImpl.invoke(DefaultPOJOInvokerImpl.java:181)<br />2007-12-17 09:52:22,563 INFO [STDOUT] at com.adobe.idp.dsc.interceptor.impl.InvocationInterceptor.intercept(InvocationInterceptor.java:134)<br />2007-12-17 09:52:22,563 INFO [STDOUT] at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptorChainImpl.java:44)<br />2007-12-17 09:52:22,563 INFO [STDOUT] at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor$1.doInTransaction(TransactionInterceptor.java:74)<br />2007-12-17 09:52:22,563 INFO [STDOUT] at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EjbTransactionCMTAdapterBean.execute(EjbTransactionCMTAdapterBean.java:336)<br />2007-12-17 09:52:22,563 INFO [STDOUT] at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EjbTransactionCMTAdapterBean.doSupports(EjbTransactionCMTAdapterBean.java:212)<br />2007-12-17 09:52:22,563 INFO [STDOUT] at sun.reflect.GeneratedMethodAccessor375.invoke(Unknown Source)<br />2007-12-17 09:52:22,563 INFO [STDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)<br />2007-12-17 09:52:22,563 INFO [STDOUT] at java.lang.reflect.Method.invoke(Method.java:585)<br />2007-12-17 09:52:22,563 INFO [STDOUT] at org.jboss.invocation.Invocation.performCall(Invocation.java:345)<br />2007-12-17 09:52:22,563 INFO [STDOUT] at org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invoke(StatelessSessionContainer.java:214)<br />2007-12-17 09:52:22,563 INFO [STDOUT] at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionInterceptor.java:149)<br />2007-12-17 09:52:22,563 INFO [STDOUT] at org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSessionInstanceInterceptor.java:154)<br />2007-12-17 09:52:22,563 INFO [STDOUT] at org.jboss.webservice.server.ServiceEndpointInterceptor.invoke(ServiceEndpointInterceptor.java:54)<br />2007-12-17 09:52:22,563 INFO [STDOUT] at org.jboss.ejb.plugins.CallValidationInterceptor.invoke(CallValidationInterceptor.java:48)<br />2007-12-17 09:52:22,563 INFO [STDOUT] at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:106)<br />2007-12-17 09:52:22,563 INFO [STDOUT] at org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:363)<br />2007-12-17 09:52:22,563 INFO [STDOUT] at org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:166)<br />2007-12-17 09:52:22,563 INFO [STDOUT] at org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:153)<br />2007-12-17 09:52:22,563 INFO [STDOUT] at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:192)<br />2007-12-17 09:52:22,563 INFO [STDOUT] at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor.java:122)<br />2007-12-17 09:52:22,563 INFO [STDOUT] at org.jboss.ejb.SessionContainer.internalInvoke(SessionContainer.java:624)<br />2007-12-17 09:52:22,563 INFO [STDOUT] at org.jboss.ejb.Container.invoke(Container.java:873)<br />2007-12-17 09:52:22,563 INFO [STDOUT] at org.jboss.ejb.plugins.local.BaseLocalProxyFactory.invoke(BaseLocalProxyFactory.java:415)<br />2007-12-17 09:52:22,563 INFO [STDOUT] at org.jboss.ejb.plugins.local.StatelessSessionProxy.invoke(StatelessSessionProxy.java:88)<br />2007-12-17 09:52:22,563 INFO [STDOUT] at $Proxy200.doSupports(Unknown Source)<br />2007-12-17 09:52:22,563 INFO [STDOUT] at com.adobe.idp.dsc.transaction.impl.ejb.EjbTransactionProvider.execute(EjbTransactionProvider.java:104)<br />2007-12-17 09:52:22,563 INFO [STDOUT] at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor.intercept(TransactionInterceptor.java:72)<br />2007-12-17 09:52:22,563 INFO [STDOUT] at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptorChainImpl.java:44)<br />2007-12-17 09:52:22,563 INFO [STDOUT] at com.adobe.idp.dsc.interceptor.impl.InvalidStateInterceptor.intercept(InvalidStateInterceptor.java:37)<br />2007-12-17 09:52:22,563 INFO [STDOUT] at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptorChainImpl.java:44)<br />2007-12-17 09:52:22,563 INFO [STDOUT] at com.adobe.idp.dsc.interceptor.impl.AuthorizationInterceptor.intercept(AuthorizationInterceptor.java:88)<br />2007-12-17 09:52:22,563 INFO [STDOUT] at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptorChainImpl.java:44)<br />2007-12-17 09:52:22,563 INFO [STDOUT] at com.adobe.idp.dsc.engine.impl.ServiceEngineImpl.invoke(ServiceEngineImpl.java:113)<br />2007-12-17 09:52:22,563 INFO [STDOUT] at com.adobe.idp.dsc.routing.Router.routeRequest(Router.java:102)<br />2007-12-17 09:52:22,563 INFO [STDOUT] at com.adobe.idp.dsc.provider.impl.base.AbstractMessageReceiver.routeMessage(AbstractMessageReceiver.java:88)<br />2007-12-17 09:52:22,563 INFO [STDOUT] at com.adobe.idp.dsc.provider.impl.vm.VMMessageDispatcher.doSend(VMMessageDispatcher.java:210)<br />2007-12-17 09:52:22,563 INFO [STDOUT] at com.adobe.idp.dsc.provider.impl.base.AbstractMessageDispatcher.send(AbstractMessageDispatcher.java:57)<br />2007-12-17 09:52:22,563 INFO [STDOUT] at com.adobe.idp.dsc.clientsdk.ServiceClient.invoke(ServiceClient.java:208)<br />2007-12-17 09:52:22,563 INFO [STDOUT] at com.adobe.idp.scheduler.callback.ServiceCallbackHandler.execute(ServiceCallbackHandler.java:87)<br />2007-12-17 09:52:22,563 INFO [STDOUT] at org.quartz.core.JobRunShell.run(JobRunShell.java:202)<br />2007-12-17 09:52:22,563 INFO [STDOUT] at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:529)<br />2007-12-17 09:52:23,547 INFO [com.adobe.idp.dsc.provider.service.email.impl.EmailWriterImpl] EmailWriterImpl error : Could not connect to SMTP host: localhost, port: 25;<br /> nested exception is:<br /> java.net.ConnectException: Connection refused: connect<br />2007-12-17 09:52:23,547 INFO [STDOUT] javax.mail.MessagingException: Could not connect to SMTP host: localhost, port: 25;<br /> nested exception is:<br /> java.net.ConnectException: Connection refused: connect<br />2007-12-17 09:52:23,547 INFO [STDOUT] at com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:1008)<br />2007-12-17 09:52:23,547 INFO [STDOUT] at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:197)<br />2007-12-17 09:52:23,547 INFO [STDOUT] at javax.mail.Service.connect(Service.java:233)<br />2007-12-17 09:52:23,547 INFO [STDOUT] at javax.mail.Service.connect(Service.java:134)<br />2007-12-17 09:52:23,547 INFO [STDOUT] at com.adobe.idp.dsc.provider.service.email.impl.EmailWriterImpl.send(EmailWriterImpl.

Avatar

Level 4
2007-12-17 09:52:23,547 INFO [com.adobe.idp.dsc.provider.service.email.impl.EmailWriterImpl] EmailWriterImpl error : Could not connect to SMTP host: localhost, port: 25;

nested exception is:

java.net.ConnectException: Connection refused: connect

2007-12-17 09:52:23,547 INFO [STDOUT] javax.mail.MessagingException: Could not connect to SMTP host: localhost, port: 25;

nested exception is:

java.net.ConnectException: Connection refused: connect

2007-12-17 09:52:23,547 INFO [STDOUT] at com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:1008)

2007-12-17 09:52:23,547 INFO [STDOUT] at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:197)

2007-12-17 09:52:23,547 INFO [STDOUT] at javax.mail.Service.connect(Service.java:233)

2007-12-17 09:52:23,547 INFO [STDOUT] at javax.mail.Service.connect(Service.java:134)

2007-12-17 09:52:23,547 INFO [STDOUT] at com.adobe.idp.dsc.provider.service.email.impl.EmailWriterImpl.send(EmailWriterImpl.java:223)

2007-12-17 09:52:23,547 INFO [STDOUT] at com.adobe.idp.dsc.provider.service.email.impl.write.EmailResultHandlerImpl.handleFailure(EmailResultHandlerImpl.java:398)

2007-12-17 09:52:23,547 INFO [STDOUT] at com.adobe.idp.dsc.provider.service.email.impl.write.EmailResultHandlerImpl.handleFailure(EmailResultHandlerImpl.java:342)

2007-12-17 09:52:23,547 INFO [STDOUT] at com.adobe.idp.dsc.provider.service.email.impl.scan.EmailScanJobImpl.handleFailure(EmailScanJobImpl.java:604)

2007-12-17 09:52:23,547 INFO [STDOUT] at com.adobe.idp.dsc.provider.service.email.impl.scan.EmailScanJobImpl.execute(EmailScanJobImpl.java:115)

2007-12-17 09:52:23,547 INFO [STDOUT] at sun.reflect.GeneratedMethodAccessor6211.invoke(Unknown Source)

2007-12-17 09:52:23,547 INFO [STDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

2007-12-17 09:52:23,547 INFO [STDOUT] at java.lang.reflect.Method.invoke(Method.java:585)

2007-12-17 09:52:23,547 INFO [STDOUT] at com.adobe.idp.dsc.component.impl.DefaultPOJOInvokerImpl.invoke(DefaultPOJOInvokerImpl.java:181)

2007-12-17 09:52:23,547 INFO [STDOUT] at com.adobe.idp.dsc.interceptor.impl.InvocationInterceptor.intercept(InvocationInterceptor.java:134)

2007-12-17 09:52:23,547 INFO [STDOUT] at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptorChainImpl.java:44)

2007-12-17 09:52:23,547 INFO [STDOUT] at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor$1.doInTransaction(TransactionInterceptor.java:74)

2007-12-17 09:52:23,547 INFO [STDOUT] at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EjbTransactionCMTAdapterBean.execute(EjbTransactionCMTAdapterBean.java:336)

2007-12-17 09:52:23,547 INFO [STDOUT] at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EjbTransactionCMTAdapterBean.doSupports(EjbTransactionCMTAdapterBean.java:212)

2007-12-17 09:52:23,547 INFO [STDOUT] at sun.reflect.GeneratedMethodAccessor375.invoke(Unknown Source)

2007-12-17 09:52:23,547 INFO [STDOUT] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

2007-12-17 09:52:23,547 INFO [STDOUT] at java.lang.reflect.Method.invoke(Method.java:585)

2007-12-17 09:52:23,547 INFO [STDOUT] at org.jboss.invocation.Invocation.performCall(Invocation.java:345)

2007-12-17 09:52:23,547 INFO [STDOUT] at org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invoke(StatelessSessionContainer.java:214)

2007-12-17 09:52:23,547 INFO [STDOUT] at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionInterceptor.java:149)

2007-12-17 09:52:23,547 INFO [STDOUT] at org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSessionInstanceInterceptor.java:154)

2007-12-17 09:52:23,547 INFO [STDOUT] at org.jboss.webservice.server.ServiceEndpointInterceptor.invoke(ServiceEndpointInterceptor.java:54)

2007-12-17 09:52:23,547 INFO [STDOUT] at org.jboss.ejb.plugins.CallValidationInterceptor.invoke(CallValidationInterceptor.java:48)

2007-12-17 09:52:23,547 INFO [STDOUT] at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:106)

2007-12-17 09:52:23,547 INFO [STDOUT] at org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:363)

2007-12-17 09:52:23,547 INFO [STDOUT] at org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:166)

2007-12-17 09:52:23,547 INFO [STDOUT] at org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:153)

2007-12-17 09:52:23,547 INFO [STDOUT] at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:192)

2007-12-17 09:52:23,547 INFO [STDOUT] at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor.java:122)

2007-12-17 09:52:23,547 INFO [STDOUT] at org.jboss.ejb.SessionContainer.internalInvoke(SessionContainer.java:624)

2007-12-17 09:52:23,547 INFO [STDOUT] at org.jboss.ejb.Container.invoke(Container.java:873)

2007-12-17 09:52:23,547 INFO [STDOUT] at org.jboss.ejb.plugins.local.BaseLocalProxyFactory.invoke(BaseLocalProxyFactory.java:415)

2007-12-17 09:52:23,547 INFO [STDOUT] at org.jboss.ejb.plugins.local.StatelessSessionProxy.invoke(StatelessSessionProxy.java:88)

2007-12-17 09:52:23,547 INFO [STDOUT] at $Proxy200.doSupports(Unknown Source)

2007-12-17 09:52:23,547 INFO [STDOUT] at com.adobe.idp.dsc.transaction.impl.ejb.EjbTransactionProvider.execute(EjbTransactionProvider.java:104)

2007-12-17 09:52:23,547 INFO [STDOUT] at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor.intercept(TransactionInterceptor.java:72)

2007-12-17 09:52:23,547 INFO [STDOUT] at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptorChainImpl.java:44)

2007-12-17 09:52:23,547 INFO [STDOUT] at com.adobe.idp.dsc.interceptor.impl.InvalidStateInterceptor.intercept(InvalidStateInterceptor.java:37)

2007-12-17 09:52:23,547 INFO [STDOUT] at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptorChainImpl.java:44)

2007-12-17 09:52:23,547 INFO [STDOUT] at com.adobe.idp.dsc.interceptor.impl.AuthorizationInterceptor.intercept(AuthorizationInterceptor.java:88)

2007-12-17 09:52:23,547 INFO [STDOUT] at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptorChainImpl.java:44)

2007-12-17 09:52:23,547 INFO [STDOUT] at com.adobe.idp.dsc.engine.impl.ServiceEngineImpl.invoke(ServiceEngineImpl.java:113)

2007-12-17 09:52:23,547 INFO [STDOUT] at com.adobe.idp.dsc.routing.Router.routeRequest(Router.java:102)

2007-12-17 09:52:23,547 INFO [STDOUT] at com.adobe.idp.dsc.provider.impl.base.AbstractMessageReceiver.routeMessage(AbstractMessageReceiver.java:88)

2007-12-17 09:52:23,547 INFO [STDOUT] at com.adobe.idp.dsc.provider.impl.vm.VMMessageDispatcher.doSend(VMMessageDispatcher.java:210)

2007-12-17 09:52:23,547 INFO [STDOUT] at com.adobe.idp.dsc.provider.impl.base.AbstractMessageDispatcher.send(AbstractMessageDispatcher.java:57)

2007-12-17 09:52:23,547 INFO [STDOUT] at com.adobe.idp.dsc.clientsdk.ServiceClient.invoke(ServiceClient.java:208)

2007-12-17 09:52:23,547 INFO [STDOUT] at com.adobe.idp.scheduler.callback.ServiceCallbackHandler.execute(ServiceCallbackHandler.java:87)

2007-12-17 09:52:23,547 INFO [STDOUT] at org.quartz.core.JobRunShell.run(JobRunShell.java:202)

2007-12-17 09:52:23,547 INFO [STDOUT] at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:529)

2007-12-17 09:52:23,547 ERROR [com.adobe.idp.dsc.provider.service.email.impl.write.EmailResultHandlerImpl] Internal error.

2007-12-17 09:52:32,516 INFO [com.adobe.idp.dsc.provider.service.email.impl.EmailReaderImpl] unlock EmailSource : testacc@ws03-exchange.iconos.be

Avatar

Level 4
As you can see in this error log, I also always get an error about SMTP connection failure. Is there something that can be done to prevent this error? I only want to work with pop3.



Thanks in advance,



RonnyR

Avatar

Former Community Member
from the dos prompt can you type in the mail server name and see what happens?