happy easy ha scritto: > Hi everyone. I'm trying out the JAMES mail server on localhost. I've > installed and ran the service. I've created [EMAIL PROTECTED], [EMAIL > PROTECTED], > and [EMAIL PROTECTED] I've configured Outlook Express for the 3 accounts > using > SMTP. When i tried to check mail, it completes the task successfully. But > when i tried to send a mail (containing text only, without attachments) > from > [EMAIL PROTECTED] to [EMAIL PROTECTED], i get: > > An unknown error has occurred. Subject 'Testing 123', Account: '127.0.0.1', > Server: '127.0.0.1', Protocol: SMTP, Server Response: '451 4.0.0 Error > processing message: Unable to retrieve the data: The system cannot find the > path specified', Port: 25, Secure(SSL): No, Server Error: 451, Error > Number: > 0x800CCC6A > > I tried Mozilla Thunderbird i got the same results. I've googled but no > result. > Please help. Thanks.
There is an error on the JAMES Server side. You should look for logfiles in the <james>/apps/james/logs/ folder for the smtpserver logs. You should have something like: "Unknown error occurred while processing DATA." and a stacktrace. We need that stack trace. Btw the problem seems to be related with the temporary location james store messages while they are being received. We use "File.createTempFile" for this, maybe you have problems with your system temporary folder? Here is the javadoc for the createTempFile: ---- The default temporary-file directory is specified by the system property java.io.tmpdir. On UNIX systems the default value of this property is typically "/tmp" or "/var/tmp"; on Microsoft Windows systems it is typically "C:\\WINNT\\TEMP". A different value may be given to this system property when the Java virtual machine is invoked, but programmatic changes to this property are not guaranteed to have any effect upon the temporary directory used by this method. ----- Stefano --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
