RE: Smart host

2001-05-09 Thread Danny Angus
> I'm not > convinced that sending all your emails to your ISP would significantly > lighten the load on your mail server. Perhaps.. (without getting too embroiled in someonelses discussion) Assuming the ISP is running a reliable service, *all* email would go straight out, there'd be nothin

RE: Mailing Lists

2001-05-10 Thread Danny Angus
subscribe and unsubscribe, look in the conf file, for the address to send to. > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, May 09, 2001 11:01 PM > To: [EMAIL PROTECTED] > Subject: Mailing Lists > > > Hi there, > > The documenta

RE: Seems I'm spammed again...

2001-05-14 Thread Danny Angus
mailservers were originally expected to display relaying behaviour (its a cosy cooperative idea), but in the real world spammers abuse relaying to mask the true origin of the mail, and the owners of the relays are the ones who get punished. Hence no-noe relays for anyone outside their own network.

RE: Seems I'm spammed again...

2001-05-14 Thread Danny Angus
> By no means does anybody in my "organization" (9 people) want to > receive email about Viagra I bet some in mine do ;-) - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Being picky on usernames

2001-05-21 Thread Danny Angus
The problem is that the expected behaviour of usernames is case insensitive, but the compliant behaviour is case-sensitive, therefore the only sensible route would be to have it as a configurable option. As far as I understand it, anyway. d > It seems that James is pretty picky on usernames; be

RE: Being picky on usernames

2001-05-23 Thread Danny Angus
> I'm more interested in the brute-force method; accept any mail which has > non compliant address > and then translate the upper/mixed-case address to > lower case, and also notify the sender that his/her destination address > was not RFC compliant. You don't know that it is non-compliant vis-a

RE: Upgrading James

2001-05-29 Thread Danny Angus
Charles wrote: >Also note that the config files have changed format (and number) What an inconsequential sounding phrase that is, compared to re-learning how to configure the ___ thing! - To unsubscribe, e-mail: [EMAIL PROT

AvalonListserv annoying cosmetic bug

2001-05-29 Thread Danny Angus
the AvalonListserv mailet goes a bit awry with "RE:" and it moves the subject prefix to the front every time, so my mail client adds another "RE:" for EG; "RE: [seemunky] RE: RE: RE: test" - To unsubscribe, e-mail: [EMAIL P

RE: AvalonListserv annoying cosmetic bug

2001-05-29 Thread Danny Angus
int index = subj.indexOf(prefix); if (index > -1) { //dont do anything anymore } else { subj = prefix + ' ' + subj; } > -Original Message- > From: Danny Angus

nntp how do I?

2001-05-29 Thread Danny Angus
This is pretty cool by the way :-) but "how-do-i" make my server require authentication, preferably against a user list I can use for a listerve too, for closed nntp? And can I reflect news trafic in a listserve way by processing incoming email & news posts with a mailet? (A conf tip would help

RE: AvalonListserv annoying cosmetic bug

2001-05-29 Thread Danny Angus
move the existing prefix in this > case? What > > if the prefix appears multiple times? > > Subject: Re: Sending messages to the [seemunky] list... > > > > Regards, > > > > -Troy > > > > > From: "Danny Angus" <[EMAIL PROTECTED]> > > &

RE: Town

2001-05-30 Thread Danny Angus
I'd be happy to see town ditched in favour of JDBC, if there was comprehensive enough config. put it this way, id like to set up seperate tables for each kind of repository, and might like to be able to map real field names onto the name of their contents, EG: -Original Message- > From

RE: nntp how do I?

2001-05-30 Thread Danny Angus
> -Original Message- > From: Harmeet [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, May 30, 2001 3:12 AM > To: [EMAIL PROTECTED] > Subject: Re: nntp how do I? > Thanks. BTW. What NNTP Client are you using ? outlook express (ahem!) quik q: will matchers be invoked when James receives nn

RE: BUG: sending returned email

2001-05-30 Thread Danny Angus
thats what I thought, if both fail it should become an error, no? > -Original Message- > From: Kazys Jocionis [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, May 30, 2001 6:53 PM > To: vytis; [EMAIL PROTECTED]; [EMAIL PROTECTED] > Subject: Re: BUG: sending returned email > > > > > Just

Ok, now what!

2001-05-30 Thread Danny Angus
Ok, so I've written a new class to replace GenericListserve to suit myself (re the prefix thing) re-compiled everything using my new class, and _lo_ it works :-) (where do I get the cigar?) Now my next question is.. where can I find out how to deal with MIME messages in my mailet? I thought I'd

RE: AvalonListserv annoying cosmetic bug

2001-05-30 Thread Danny Angus
> > How do traditional list-servs deal with the subject prefix? Isn't > that "acceptible" behaviour? > Egroups (now yahoogroups) only looks for the prefix anywhere, it doesn't try to move it. Who knows what majordomo does? -

nntps doesn't work

2001-05-30 Thread Danny Angus
I can't make nntps work, setting TRUE in TLS line of config.xml just causes James not to start at all.. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

more nntp doesn't work, this time authrequired

2001-05-30 Thread Danny Angus
not only TLS but also.. true does nothing(?) I can still access the server with no username or password. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: James performance

2001-06-14 Thread Danny Angus
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Why would you want to lock messages? Perhaps I'm being stupid here, but .. we don't need a write lock for messages because they are written in one pass we don't need a read lock for any purpose at all, concurrent reads is just fine, we don't need a

RE: Mailstore

2001-06-19 Thread Danny Angus
depends how you conf James, will use filesystem or rdbms > -Original Message- > From: John S. Gage [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, June 19, 2001 2:24 PM > To: [EMAIL PROTECTED] > Subject: Mailstore > > > How is the mailstore handled in James? Are the messages stored in, >

RE: RE: Mailstore

2001-06-21 Thread Danny Angus
the easiest way is to make your web app connect to James using smtp & pop3, this way it will be capable of connecting to any mailserver, not just james. > I want to make a WEB MAIL server which offers all the mailing > facilities using only the Browser. -

RE: Mailstore

2001-06-21 Thread Danny Angus
> a web mail application that reads/writes to the (database) mailboxes > would make reading email a bit more convenient. I don't know what would > happen if you just delete messages that already reside in the mailboxes > -- in relation with the POP server, I mean. I guess it would be all > right.

RE: Mailstore

2001-06-21 Thread Danny Angus
> On the one hand you're perfectly right, but that's nothing special as it > would be if it is really integrated with James. Additionally > you've got the > problem that you've got to store the mails after fetching them > via POP3 not completely true, if you simply fetch the list and display it,

RE: more simple problems

2001-07-02 Thread Danny Angus
if you are using windows search the list archive for information about windows, telnet and java > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: Monday, July 02, 2001 4:02 PM > To: [EMAIL PROTECTED] > Subject: more simple problems > > > I sent a mail round

RE: James's throughput and bug... Multithreaded Performance

2001-07-03 Thread Danny Angus
> The data transfer is contiguous, but I believe your points are assuming a > single destination. FTP allows multiple connections to transmit/recieve parts of the same file, pop3 doesn't allow that, it should [james deviates from the RFC in this, AFAIK] lock during access and only, therefore, all

RE: mail is sent but doesn't arrive

2001-07-03 Thread Danny Angus
you said "I am using the name of a dns server.." if you really are using a name, not an IP address, make sure it PING's at James's machine, it could be a vicious circle, with an unresolvable domain name for DNS you will go nowhere fast.. In fact make sure it pings even if it's an IP address, wher

RE: Coredump trying to run JAMES

2001-07-03 Thread Danny Angus
mandrake is a distro of redhat with a fancy installer and some stuff. once you've installed it its pretty indistinguishable in most cases. (as a server anyway). d. > -Original Message- > From: Darrell DeBoer [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, July 03, 2001 2:14 AM > To: [EMAIL P

RE: mail is sent but doesn't arrive

2001-07-05 Thread Danny Angus
:08 AM > To: [EMAIL PROTECTED] > Subject: RE: mail is sent but doesn't arrive > > > Hello > I do have the IP address, how do I make sure it PINGS with James. > I am running > everything on a stand alone pc. > Do I have to be registered with a dns? > > On Tue, 3 Ju

RE: Setting up a mail list

2001-07-06 Thread Danny Angus
i think I'm to blame, its not subscribe/unsubscribe but something like "list-on" "list-off" ... but don't quote me > -Original Message- > From: sbelt [mailto:[EMAIL PROTECTED]] > Sent: Friday, July 06, 2001 5:31 PM > To: [EMAIL PROTECTED] > Subject: Re: Setting up a mail list > > > Thanks

RE: adding users

2001-07-13 Thread Danny Angus
if you use the database for the store too, then you don't need to create anything other than the user record. > -Original Message- > From: sbelt [mailto:[EMAIL PROTECTED]] > Sent: Thursday, July 12, 2001 7:45 PM > To: [EMAIL PROTECTED] > Subject: Re: adding users > > > (I agree, but datab

RE: Running james on linux

2001-07-16 Thread Danny Angus
Yeah, you have to diable it in inetd > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On > Behalf Of Ian Lea > Sent: Monday, July 16, 2001 4:34 PM > To: [EMAIL PROTECTED] > Cc: [EMAIL PROTECTED] > Subject: Re: Running james on linux > > > sendmail has a lot to d

RE: How to use James list ?

2001-07-26 Thread Danny Angus
1st please dont cc both lists, its just annoying, everyone on the dev list is quite likely to be on the users list too. 2nd, lists use similar table to users, but I've not found a way to use a seperate table (lack of trying I suspect) I suggest you look at the version in CVS where, by all account

Input for JDB Mail Repository

2001-07-31 Thread Danny Angus
Charles Benett <[EMAIL PROTECTED]> Wrote: >a) Would it be useful to allows different tables, e.g. one for spam >another for errors etc.? Yes, and no! >b) If one had multiple tables, how likely is it that one would have them >in different dbs or on different machines? I think that if you are

Segmentation error

2001-09-13 Thread Danny Angus
Hi all, I've been running james 1.2.1 & 1.2.2 on NT,Win2k & Linux redhat6 fine since 26/march/01 And I've been successfully messin' with mailets NNTP and db (MySQL) stuff. Now I'm trying to install it on a redhat7 machine (to do some beta testing in our office) and I get these messages before it

RE: Segmentation error

2001-09-13 Thread Danny Angus
Eric & mikew, Thanks for the two good suggestions, I had heard about the redhat 7.0/7.1 thing but it had slipped my mind, thats probably the problem, using an older JRE would be a simpler fix, there are a few users of the machine. As for the IBM JVM, I know folks, 'specially on the tomcat list,

RE: Segmentation error

2001-09-13 Thread Danny Angus
further news, JRE1.3.0_02, does indeed fix this problem :-) > -Original Message- > From: Danny Angus [mailto:[EMAIL PROTECTED]] > Sent: Thursday, September 13, 2001 7:33 PM > To: [EMAIL PROTECTED] > Subject: RE: Segmentation error > > > Eric & mikew,

RE: Segmentation error

2001-09-13 Thread Danny Angus
rom sun) is to go to RedHat 7.1. > I have been running java related stuff (not james) on RedHat 7.1 for > several days now without issue. > mikew- > > - Original Message - > From: "Danny Angus" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> >

RE: Email addres is case sensitive?

2001-09-17 Thread Danny Angus
RFC822 says addresses should be case sensistive, this was discussed before but I don't know if anyone made provision for the common configuration of addresses as case-insensitive. > -Original Message- > From: Vytautas Germanavicius [mailto:[EMAIL PROTECTED]] > Sent: Monday, September 17,

RE: Receipt Offset by One Hour

2001-09-17 Thread Danny Angus
are both your machines (server and client) set to the same zone, daylight, and time. Please don't take too much offence, I think that OE uses local system time, not the time on the email for receipt time, and servers are sometimes set to not use daylight saving, as timestamps and logs can become c

RE: Email addres is case sensitive?

2001-09-17 Thread Danny Angus
>(just as a > point of note, the domain part of the email address is always > case-insensitive... it's just the part before the @ that's > questionably case > sensitive. RFC822 says it should be sensitive, but in practice > pretty much > nobody treats it that way) Sorry, yes I knew that, just

JDBC mail store

2001-09-18 Thread Danny Angus
I cant get this to work, I thought id done everything, connection, and repository, but no.. obviously not. Anyone done this and care to share their method? I can get users rep to work .. so sqlResources is found, connection made etc. but then I get:: (which suggests the table wasnt created, but i

Bug in MySQL JDBC sqlResources table creation statement

2001-09-18 Thread Danny Angus
the mysql repository table has to have an integer auto_increment field as primary key, the combination of message name and repository name is too large to be used as a key :( I'm testing these changes now. and I'll investigate a better key stucture. and .. the statement had a typo in it too. d.

RE: Receipt Offset by One Hour

2001-09-19 Thread Danny Angus
mes a month for > almost a year now (and used by us in EST for 2 years now), and would be > surprised if this serious a bug hadn't been noticed before. > > Serge Knystautas > Loki Technologies > http://www.lokitech.com/ > - Original Message - > From: "Danny An

RE: Multi-domain and Aliases

2001-09-19 Thread Danny Angus
I think James possibly ought to have a single server for each port, but have that server send requests to a seperate handler for each handled domain. so pop3 server would get domain from users at login and smtp would get domain from rcpt to: then the conf could have multiple smpt & pop blocks outl

RE: Multi-domain and Aliases

2001-09-19 Thread Danny Angus
I too agree with the many to many relationship between users and domains. My thoughts were to reproduce the virtual host idea of the Apache web server, for the domain configuration of all the server types within James, I think this principle could still hold good if the users repository had an add

RE: Multi-domain and Aliases

2001-09-19 Thread Danny Angus
you create users of the system, where uname is unique and not the name portion of an email address(necessarily), they then have many mail addresses, but only one mailbox .. uname password emailaddress getting all the users with the same uname should give you a collection of aliases for the same

RE: HELP IS NEEDED

2001-09-20 Thread Danny Angus
I have never heard of anyone logging to a db, how are you trying this? > -Original Message- > From: Barry Jia [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, September 19, 2001 7:24 PM > To: '[EMAIL PROTECTED]' > Subject: HELP IS NEEDED > > > > > I am trying to use james-1.3-dev, when I

RE: Multi-domain and Aliases

2001-09-20 Thread Danny Angus
; My old isp worked this way, but it actually was a disadvantage at times as > [EMAIL PROTECTED] was the same as [EMAIL PROTECTED], > so if there > were two different domains and two brady's, they could not both have the > brady@ username... > > Brady > > -Original Mess

Fw: I think I just spotted a bug in the news server

2001-09-18 Thread Danny Angus
I spotted this, I dunno if its a james bug or an RFC bug ;) post this message (if it gets through intact!) it gets truncated below "single dot below", and two dots at the beginning of the line are reduced to one.. "danny" <[EMAIL PROTECTED]> wrote in message news:... start two dots .. space word

ran out of resources? why?

2001-09-23 Thread Danny Angus
I didn't have moe than five connections (to MySQL, Linux) when this occurred.. Sun Sep 23 14:26:43 BST 2001 [DEBUG ] <> (): org.apache.avalon.excalibur.datasource.JdbcConnection: could not be instantiated. java.lang.InstantiationException: Ran out of resources to instantiate at org.apach

RE: Bug in MySQL JDBC sqlResources table creation statement

2001-09-25 Thread Danny Angus
2 points.. 1/ I changed the MySQL table and added a field "message_id int(32) unsigned zerofill NOT NULL auto_increment," made it the PK, and the old key a UNIQUE which works without changing the code, diff appended .. 2/ the latest mysql seems not to have this restriction anymore anyway. cvs -

RE: Bug in MySQL JDBC sqlResources table creation statement

2001-09-25 Thread Danny Angus
Thats the confused conclusion I came to, however.. a) it seems that a PK is needed by the JDBC driver, or the code. and b) it prevents duplicates corrupting the db but as the latest MySQL works with the SQL that exists,(actually thats not quite right, theres a typo in the PRIMARY () line.) my pr

RE: Bug in MySQL JDBC sqlResources table creation statement

2001-09-25 Thread Danny Angus
value space of > only 2^32. The precision you apply to the integer column type denotes only > the display precision not the precision of the value. A column of type > integer is always 32 bit long. I know that this is of no > importance in this > context. > > Greetings, >

RE: Microsoft Database.

2001-09-26 Thread Danny Angus
you need to use the mysql jdbc driver from .. http://mmmysql.sourceforge.net/ -Original Message- From: kieran Mc Nally [mailto:[EMAIL PROTECTED]] Sent: 26 September 2001 12:29 To: [EMAIL PROTECTED] Subject: RE: Microsoft Database. Thanks for the advice, I've switched to MYSQL instead. B

RE: java webmail

2001-09-30 Thread Danny Angus
Frankly I'd like to see a jsp/servelet webmail system writen for tomcat, and processing mail recieved through James. On the otherhand jwma already exists .. and I have no time to write one myself. Plus James hasn't tackled the vhost issue satisfactorily yet, owing to ongoing discussions about how

RE: Problems with NNTP & Outlook Express

2001-09-30 Thread Danny Angus
post a second message, for some reason James fails to show the first message until a second one is sent. > -Original Message- > From: Ignacio J. Ortega [mailto:[EMAIL PROTECTED]] > Sent: Sunday, September 30, 2001 4:58 PM > To: '[EMAIL PROTECTED]' > Subject: Problems with NNTP & Outlook E

RE: Problems with NNTP & Outlook Express

2001-09-30 Thread Danny Angus
IMAP is experimental, and does *not* work :) NNTP bug is bug in James AFAIK. :( POP3 exception looks like it is caused by part of a message (each message is two files) having been deleted. I'm no spaniard ;) but "(El sistema no puede hallar el archivo especificado)" looks as if it may mean that th

RE: Problems with NNTP & Outlook Express

2001-09-30 Thread Danny Angus
> Yes this is the problem the message says, there is a file that was > deleted or somthing, the file is not found , i wasnt for sure :), who is > deleting files in my HD ??? :).. any idea why i'm getting this message > in a new clean install? No. ! 1/ James will delete files while its running,

RE: Problems with NNTP & Outlook Express

2001-09-30 Thread Danny Angus
may be i should post a bug about this? Check the list archive, I think I've seen this discussed before. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Receipt Offset by One Hour

2001-10-04 Thread Danny Angus
> > > > > [EMAIL PROTECTED] > > > > > > -Original Message- > > > From: Serge Knystautas [mailto:[EMAIL PROTECTED]] > > > Sent: Montag, 24. September 2001 16:36 > > > To: [EMAIL PROTECTED] > > > Subject: Re: Receipt Off

RE: Receipt Offset by One Hour

2001-10-04 Thread Danny Angus
RFC822 specifies English for the days and months , I guess its up to the client, then, to translate into locale specific versions.

RE: Receipt Offset by One Hour

2001-10-04 Thread Danny Angus
-BEGIN PGP MESSAGE- Version: PGPfreeware 7.0.3 for non-commercial use qANQR1DBwU4DmdiwY0SOCJsQB/44PNzGzx2u37gmSttPnVhBji8MHB5dYsPrSjsb +dVak6oGmmuIxZo9ZqcL5+qnmszRP8+yiKNFULnuXRonf4FVN8x3oM1ugklx930+ 2S25p6VoZnKKuoQOmOA9yYbc972OTA4f5sav3b2CEFB3rVGaOnlC57mj0aSJ

RE: Receipt Offset by One Hour

2001-10-04 Thread Danny Angus
sorry PGP'ed again .. shouldn't locale.US force the use of the english names rather than the german, surely getting german date phrases from a format constructed with locale.US is the opposite to what should happen. > -Original Message----- > From: Danny Angu

RE: Receipt Offset by One Hour

2001-10-04 Thread Danny Angus
- > Mirco Bharpalania > > GMD > German National Research Center for Information Technology. > Dolivostr. 15 > D-64293 Darmstadt > > [EMAIL PROTECTED] > > -Original Message- > From: Danny Angus [mailto:[EMAIL PROTECTED]] > Sen

RE: newbie Q

2001-10-05 Thread Danny Angus
> I'm wondering about this too... > Has anyone implemented virtual domain on James? No, not yet, but I think that everyone is wondering how it could be done a) without having to re-write almost every key component and b) in the most useful way. > I think it can be done. There are

RE: Problems with NNTP & Outlook Express

2001-10-05 Thread Danny Angus
gt; reloaded in James. Notice the static method call to > > ReositoryManager. The > > > end result is that email will remain stuck in the > > /var/mail/inboxes/*.* > > > directory because the extension does not match the new static name. > > > > >

RE: james 1.2.1 numeric IP

2001-10-19 Thread Danny Angus
Is the german date date thing fixed then? I have no way of telling 'cos I expect if I localise my machines to German I won't be able to do a thing with them ~:-) d. > -Original Message- > From: Peter Romianowski [mailto:[EMAIL PROTECTED]] > Sent: Friday, October 19, 2001 6:15 PM > To: [EM

RE: setting loglevel

2001-10-19 Thread Danny Angus
As I understand it the 1.2 version of James doesn't respond to changes in loglevel. :-( > -Original Message- > From: pero [mailto:[EMAIL PROTECTED]] > Sent: Friday, October 19, 2001 6:29 PM > To: [EMAIL PROTECTED] > Subject: setting loglevel > > > Hi, > > I think I misunderstood something

notify/forward/verp etc etc

2001-10-22 Thread Danny Angus
Morning, Been James'ing at the weekend and I'm now testing a mailet which meets all of the requirements Serge suggested on the user list for forward/notify etc. It is also designed to be extendable so that derivative classes need only override one of several getter methods which return the config

RE: Concurrent access to James's message database

2001-10-22 Thread Danny Angus
Read only access is trivial, as long as you are aware that the records may change without warning, and that james uses an internal lock to which you won't have access. That also points out the only (as far as I can tell) issue with r/w access. On the other hand I suppose it depends what you are

RE: Mailet class not found

2001-10-26 Thread Danny Angus
I'm not sure that James is correctly loading more than one Mailet jar, you might have to put your mailet into the same jar as the std ones. -Original Message-From: Fred Malouf [mailto:[EMAIL PROTECTED]]Sent: Thursday, October 25, 2001 11:37 PMTo: [EMAIL PROTECTED]Subject: Mail

RE: JAMES Version 2.0a1 released!

2001-10-26 Thread Danny Angus
Hooray! can we announce it on http://jakarta.apache.org/site/news.html ? d. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: cannot use list nor stat in pop - exception

2001-10-27 Thread Danny Angus
Unfortunately a bug crept in at the last minute.. it has been fixed in CVS. Hopefully the release downloads will be fixed soon too. d. > -Original Message- > From: Jorge de Lucas y Cadenas [mailto:[EMAIL PROTECTED]] > Sent: Saturday, October 27, 2001 1:47 AM > To: [EMAIL PROTECTED] > Su

RE: cannot use list nor stat in pop - exception

2001-10-27 Thread Danny Angus
hanks a lot for your info, I will update > by cvs. > > Jorge > > Danny Angus wrote: > > > Unfortunately a bug crept in at the last minute.. it has been > fixed in CVS. > > Hopefully the release downloads will be fixed soon too. > > > > d. ---

RE: HTTP access

2001-10-31 Thread Danny Angus
I know that the Avalon stuff will let you build an http app, and then access the Avalon repositories, but you may find a quicker route is to use Tomcat, and store your messages in a database. Then you can simply read the messages into MimeMessage and get you "parts" from there, using servlets. d

RE: cannot open new listener

2001-11-01 Thread Danny Angus
Hi, My first reaction when I read this is that it *has* to be that you've got another service listening on 110 In case you dont know how (I don't mean to patronise) check by typing netstat -l on linux or netstat -a on windows, and look for pop3 or 110. If its really, not already open, look for an

RE: loading my mailet hangs on James startup

2001-11-12 Thread Danny Angus
I dont think you need to call super.init(MailetConfig) > > > public void init(MailetConfig newConfig) throws MessagingException > > > { > > > super.init(newConfig); > > > log("Initializing BounceMailet..."); -- To unsubscribe, e-mail: For additional commands, e-mai

RE: Webmail using JAMES

2001-11-22 Thread Danny Angus
No one has done this specifically for james yet, though as James supports POP3 many other Webmail implemetations will work with James, both Java and other platforms. d. > -Original Message- > From: Hasan Wasif [mailto:[EMAIL PROTECTED]] > Sent: Thursday, November 22, 2001 9:12 AM > To: [

RE: James as a List Server

2001-11-22 Thread Danny Angus
the mailing list stuff that ships with James is a little basic, there are better implementations in development AFAIK. However the things you need to check are 1/ that you have a list-users repository set up in the User Storage block this example is for db storage: file://conf/

RE: James 2-0a1 - Installation

2001-11-22 Thread Danny Angus
1/Not in a release yet, when it is that will be a new version, the fix is in cvs though 2/Oh I didn't know that, but looking at the .bat file it should set itself on NT & 2K, otherwise use the location of run.bat 3/yes, look under James on http://jakarta.apache.org/site/mail2.html d. > -Orig

RE: James 2-0a1 - Installation

2001-11-22 Thread Danny Angus
Just to make it absolutely clear V2-0a1 has a bug in POP3 This will be fixed in a future release wich will have a new number. (probably 2-0a2) You can get hold of a working version of james if you build it from cvs, its really very simple to do. > -Original Message- > From: Angus Fox [m

RE: James 2-0a1 - Installation

2001-11-23 Thread Danny Angus
Ouch, thats annoying. The trouble is that James is designed to accept any incoming mail because it is all grist to the mill of the mailets, then again if spammers find James appearing to accept mail the fact that it isn't delivered might not be enough to stop them sending. I suppose, then, that t

RE: database troubles.

2001-09-27 Thread Danny Angus
It looks like its trying to find table users in db mysql, which isn't right .. mysql is the db for permissions etc, you need to create a new db, and in that create a table called "users" for James to use. If you upgrade to the version in CVS you'll find that the db stuff is greatly improved, Jame

RE: Idea: using James for encrypting/certifying mails

2001-09-28 Thread Danny Angus
-BEGIN PGP MESSAGE- Version: PGPfreeware 7.0.3 for non-commercial use qANQR1DBwU4DmdiwY0SOCJsQCAC4Np2mP1+qk41wR9rCFxPHkJk65P6zveDGUUW3 WXMCBnr/dUOPAKQ2nYZYYHPIOTvGINXViNmvKKKwNMcIRIsqCRXa6K+NXlFmCaON 6aVbV36q2w0y7T7UiEUxdrffrDfkqblsP2ub+eDT5SvEyQmk+6ZpphawS1JqPRbA 4

RE: Idea: using James for encrypting/certifying mails

2001-09-28 Thread Danny Angus
tachement: Return-Path: <[EMAIL PROTECTED]> Received: from killerbees.co.uk ([192.168.0.2]) by linux.killerbees.co.uk (JAMES SMTP Server 1.3-dev) with SMTP ID 771 for <[EMAIL PROTECTED]>; Fri, 28 Sep 2001 09:30:39 +0100 From: "Danny Angus" <[EMAIL PR

RE: Idea: using James for encrypting/certifying mails

2001-09-28 Thread Danny Angus
e: Idea: using James for encrypting/certifying mails > > > Danny... you've gone and PGP'd on us again. :) > > Serge Knystautas > Loki Technologies > http://www.lokitech.com/ > - Original Message - > From: "Danny Angus" <[EMAIL PROTECTED]> &

RE: James as a List Server

2001-11-26 Thread Danny Angus
list need to be defined in the configuration file (for the mailet list serving definitions)? So for example, if my lists are created dynamically, I would need to somehow update the configuration file and restart JAMES? Again, thanks. - Original Message ----- From: "Danny Angus" &l

RE: Re[2]: James as a List Server

2001-11-27 Thread Danny Angus
t; To: James Users List > DA> Subject: Re: James as a List Server > > > DA> Thanks much for this. It's very helpful. > > DA> One last question --- does each mailing list need to be defined in the > DA> configuration file (for the mailet list serving definitions)?

RE: newbie question

2001-11-27 Thread Danny Angus
1/ look in the log files and see if you can see why mail isnt being delivered by james (is your config.xml dns setting correct), it seems that JavaMail is delivering it to James Ok if it ends up in the spool. 2/ set a matcher up to match only local delivery, or put your mailet config directly abo

RE: problem with inbound email

2001-11-29 Thread Danny Angus
> Non-authoritative answer: > datatranswave.com MX preference = 10, mail > exchanger = e2shan Not 100% sure, but when I use nslookup on win2k the reply is a full domain name, not just a hostname. is your MX record correct? -- To unsubscribe, e-mail: For addit

RE: James ComponentManager

2001-10-07 Thread Danny Angus
I'd suggest that you might find building the latest version of James from CVS a better bet, you can also d/l the source for Avalon, which will also provide javadocs, and other stuff. > -Original Message- > From: James Diggans [mailto:[EMAIL PROTECTED]] > Sent: Sunday, October 07, 20

RE: Sending Mail to JAMES

2001-10-10 Thread Danny Angus
> I didn't know that user@[ipaddress] is RFC compliant. Yes, but discouraged ... Domain-literals which refer to domains within the ARPA Inter- net specify 32-bit Internet addresses, in four 8-bit fields noted in decimal, as described in Request for Comments #820,

RE: Receipt Offset by One Hour

2001-10-10 Thread Danny Angus
dates should be in english for RFC822 but localised into German by your mail client (OE), this is presumably because a) it was invented by Americans, and more importantly B) it saves servers having to know a potentially unlimited number of language variations of month and day names. The trouble

RE: may I use a current CVS snapshot as production server?

2001-10-14 Thread Danny Angus
the date bug hasn't been fixed. :-( if you use the file system to store inbox mails this too currently has a bug. I'd hold off until the next release, which is due soon. But you could always get the version in cvs and try it for yourself. d. > -Original Message- > From: Peter Romianowsk

RE: Valid Recipient Username Check

2001-10-16 Thread Danny Angus
This might be in RFC821, under VRFY, RFC1869 or RFC2034 > -Original Message- > From: jason sackett [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, October 16, 2001 7:21 PM > To: [EMAIL PROTECTED] > Subject: Valid Recipient Username Check > > > I wrote a working mailet to check each recipie

RE: Valid Recipient Username Check

2001-10-16 Thread Danny Angus
Now I think I understand what you're saying.. James will send your mail back to you with the specific error if you uncomment the NotifySender mailet lines in the error processor secion of the configuration file. James won't respond "unknown user", and refuse to accept the mail during an SMTP ses

RE: Valid Recipient Username Check

2001-10-17 Thread Danny Angus
Yeah, James does this for invalid local users and failed remote delivery, *if* you run the notify sender and/or notify poster mailet correctly in the error processor, and the sender/postmaster can be reached. What James doesn't do is to check users against valid users when receiving mail via SMTP

RE: Problems restarting james

2001-10-17 Thread Danny Angus
What version are you using? Check your mail box folders, and spool folder for files left behind after the shutdown, particularly single files (they go in pairs, like policemen) I've found that a message James doesn't like can cause problems when re-starting if it is still in the system. Message

RE: How to retrieve mail from other Mail Server

2001-12-04 Thread Danny Angus
I've got another related question here, when using sendmail on Linux to send mail, for example using "mail" or from scripts, and with the SMTP daemon definitely *off* ;-) I find that I cant configure sendmail to use localhost as a gateway, or any IP or domain or MX record that resolves to the loc

RE: Install problems.

2001-12-05 Thread Danny Angus
> Under each heading e.g. What is it? Design Objectives etc is > [Element: ] > nothing else. (Is that the short and snappy version?). There is a bug in the documentation bundled with v2.0a1 ~:-o > README says it should be: > '”Phoenix 3.1a1-dev > >James James 1.2.2 Alpha >St

  1   2   3   4   5   6   7   >