On Friday, December 1, 2000, at 10:33 AM, Charles Benett wrote:

> Interesting, it seems to be working fine for me.  
> Can you check that you have matching pairs of persistentstore and 
> streamstore files in the outgoing directory?

Yes, I do.  As a passing comment - it may be important - my outgoing mail is in the 
following directory:

        ./var/mail/outgoing/,town:/

(note odd name of folder ",town")

The mail is sitting there, but there is also an empty sub-folder called 
"mail-outgoing", ie:

        ./var/mail/outgoing/,town:/mail-outgoing/

Does this mean anything?


> You are on MacOSX, correct? 
> Do you get nothing delivered, or does it work for a bit and then give 
> up? If so, how many mails can it send before giving up? 

Yes, it is MacOS X, and I can't remember who I had previous conversations with 
regarding file limits.  However, this is solved and is not an issue.  (In summary - 
the tcsh shell on MacOS X defaults to a 255 open file limit per process.  This appears 
to be simply a shell default.  Under bash on MacOS X it appears to default to 12288.)

Anyway, no emails are going out at all.

Any suggestions gratefully received.  I suspect this is something odd with the setup 
at my end, but I can't spot it anywhere.

Stuart.



> Charles 
>  
> Stuart Roebuck wrote: 
> >  
> > Back again! 
> >  
> > We've not really been using James for outgoing mail until now, and I've discovered 
>that 
> we're having some problems.  I've noted some recent posts regarding outgoing mail 
>not 
> arriving, but I still seem to have problems despite: 
> >  
> > 1. Clearing my outgoing mail directories. 
> > 2. Using the latest CVS version (old avalon) 
> > 3. Verifying that the DNS details are correct. 
> >  
> > I've tried to track things down and note the following: 
> >  
> > Outgoing mail is reaching the "RemoteDelivery" mailet.  Here is an example log of 
>one 
> such mail as it hits the mailet: 
> >  
> > 2000.11.30 12:18:30 271 (INFO) from Mailets: RemoteDelivery: Remotely delivering 
> mail Mail975586710122-67 
> > 2000.11.30 12:18:30 283 (INFO) from Mailets: RemoteDelivery: sending mail to 
> [[EMAIL PROTECTED]] on stuartroebuck.freeserve.co.uk 
> >  
> > I patched some logs into the remote delivery thread: 
> >  
> >     /** 
> >      * Handles checking the outgoing spool for new mail and delivering them if 
> >      * there are any 
> >      */ 
> >     public void run() { 
> >         //Checks the pool and delivers a mail message 
> >         log("Starting remote delivery thread"); 
> >         Properties props = new Properties(); 
> >         Session session = Session.getInstance(props, null); 
> >         while (!Thread.currentThread().interrupted()) { 
> >             try { 
> >                 String key = outgoing.accept(delayTime); 
> >                 log(Thread.currentThread().getName() + " will process mail " + 
>key); 
> >                 MailImpl mail = outgoing.retrieve(key); 
> >                 deliver(mail, session); 
> >                 outgoing.remove(key); 
> >                 mail = null; 
> >             } catch (Exception e) { 
> >                 log("Remote delivery thread exception " + e); 
> >             } 
> >         } 
> >         log("Ending remote delivery thread"); 
> >     } 
> > } 
> >  
> > and can confirm that the thread starts, never ends and never throws an exception.  
> However, it never logs the "will process mail" message. 
> >  
> > I therefore presume that the problem is part of the outgoing SpoolRepository which 
>in 
> turn appears to be inherited from Avalon - which I know nothing about. (I don't 
>really know 
> much about anything!) 
> >  
> > Any thoughts / suggestions? 
> >  
> > Thanks, 
> >  
> > Stuart. 
> >  
> > P.S. Is it just me or is this mailing list server quite slow? 
> >  
> > ** We are currently experiencing prolonged difficulties with our email ** 
> > ** provider DIGIWEB and INTERLIANT.  To guarantee that your response   ** 
> > ** is received, please replace "adolos.com" with "adolos.co.uk"        ** 
> > ** in your response.                                                   ** 
> >  
> > ------------------------------------------------------------------------- 
> > Stuart Roebuck                                  [EMAIL PROTECTED] 
> > Lead Developer                                  Mac OS X, Java, XML, etc. 
> > ADOLOS                                             http://www.adolos.com/ 
> >  
> > ------------------------------------------------------------ 
> > To subscribe:        [EMAIL PROTECTED] 
> > To unsubscribe:      [EMAIL PROTECTED] 
> > Archives:  <http://www.mail-archive.com/james%40list.working-dogs.com/> 
> > Problems?:           [EMAIL PROTECTED] 
>  
>  
> ------------------------------------------------------------ 
> To subscribe:        [EMAIL PROTECTED] 
> To unsubscribe:      [EMAIL PROTECTED] 
> Archives:  <http://www.mail-archive.com/james%40list.working-dogs.com/> 
> Problems?:           [EMAIL PROTECTED] 
>  
>  


** We are currently experiencing prolonged difficulties with our email **
** provider DIGIWEB and INTERLIANT.  To guarantee that your response   **
** is received, please replace "adolos.com" with "adolos.co.uk".       **

-------------------------------------------------------------------------
Stuart Roebuck                                  [EMAIL PROTECTED]
Lead Developer                                  Mac OS X, Java, XML, etc.
ADOLOS                                             http://www.adolos.com/

------------------------------------------------------------
To subscribe:        [EMAIL PROTECTED]
To unsubscribe:      [EMAIL PROTECTED]
Archives:  <http://www.mail-archive.com/james%40list.working-dogs.com/>
Problems?:           [EMAIL PROTECTED]

Reply via email to