[xmail] Re: ORDB/RBL checks?

2002-09-25 Thread Frederik Gallon


ehhmm .. change web-site to java script something like this:

write: "email adress:" & Chr$(1st letter) & chr$(2nd letter) &
chr$(3ndletter) etc)

I can't believe the bots are able to understand java & written in Ascii pure
codes.

-Oorspronkelijk bericht-
Van: William [mailto:[EMAIL PROTECTED]]
Verzonden: woensdag 25 september 2002 21:00
Aan: [EMAIL PROTECTED]
Onderwerp: [xmail] ORDB/RBL checks?



I see this listed as a feature, yet I cannot find how to implement this.

http://www.ordb.org/faq/#usage Using the FAQ on the ORDB site, I do not find
XMail listed either, closest is sendmail. Spam bots pick email address' off
our website so I do need to implement this.

Advice?

Thanks!

-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]
-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]




[xmail] Re: ORDB/RBL checks?

2002-09-25 Thread William


> "CustMapsList" "relays.ordb.org.:1"

Thanks David.

Does this go in SMTPrelay.tab or Spammers.tab or Server.tab?

-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]




[xmail] ORDB/RBL checks?

2002-09-25 Thread William


I see this listed as a feature, yet I cannot find how to implement this.

http://www.ordb.org/faq/#usage Using the FAQ on the ORDB site, I do not find
XMail listed either, closest is sendmail. Spam bots pick email address' off
our website so I do need to implement this.

Advice?

Thanks!

-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]




[xmail] Bad news :-)

2002-09-25 Thread Spyros Tsiolis


Hello people,

First of all I would like to thank everyone who helped along
this difficult path to configuring xmail.

Thank you all people.

On the same note, I think I found why all the flapping and shouting
didn't do the job. But before I tell the list (and the list makes
a mockery out of me for being so silly :-) I would like to
ask you chaps out there this :

Any of you chaps who do internal-to-external mail syncing :
Is it possible to describe your confirurations ?
Firewalled LAN ? xDSL ? What options does your ISP gives you
for your internet feed ?

No names, just descriptions.

Thank you all,

s.


_
Send and receive Hotmail on your mobile device: http://mobile.msn.com

-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]




[xmail] Re: eyeXmail - more than one command

2002-09-25 Thread Guillaume Devoyon


hello Tracy,
if you want i can do tests with you'r application..

Guillaume Devoyon

-Message d'origine-
De : [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]De la part de Tracy
Envoyé : mercredi 25 septembre 2002 15:17
À : [EMAIL PROTECTED]; [EMAIL PROTECTED]
Objet : [xmail] Re: eyeXmail - more than one command


I have a class library I wrote in VB.NET which handles all this (including
using standard TCP to communicate - ie. not using external programs for the
communications with the server). It exposes everything as an object model,
and maps the object model to the underlying control commands.

It is not fully tested, but if you want a copy, send me an e-mail OTL and
I'll share.

At 13:05 9/25/2002 +0200, Javier Navarro wrote:

>   Hello,
>
>   I'm developing a VB application to administrate Xmail server (create
> domains, users...) and I'm using eyeXmail to send commands to the server.
> Is it possible to send more than one command to Xmail server with the
> same ctrlclnt object?
>
>   In my tests I have had to create and destroy a ctrlclnt object each
> time I want to send a command to the server because if I try to send two
> commands, first is executed but second causes an error.
>
>   This is part of my code:
>
>   Set xmail = New eyeXMail.ctrlclnt
>   xmail.ServerAddress = "127.0.0.1"
>   xmail.ServerPort = 6017
>   xmail.ServerUser = "root"
>   xmail.ServerPassword = "password"
>   xmail.UseMD5 = True
>   Call xmail.ExecuteCommand("domainlist", "", "", 1)
>[... code ...]
>   Call xmail.ExecuteCommand("userlist", CStr(domain), "", 1)
>[... code ...]
>   Set xmail = nothing
>
>   The second call to xmail.ExecuteCommand causes the error:
>   Error '-2147352567 (80020009)'
>   Could not connect: [ERROR] Bad CTRL command syntax
>   [ERROR] Invalid response during login.
>   [ERROR] -00108 Bad CTRL command syntax
>
>   But If I create and destroy the eyeXMail.ctrlclnt object for each call
> it works fine...
>
>   Can anybody help me?
>
>   Thanks in advantage. Best regards,
>
>   Javier Navarro
>
>
>-
>To unsubscribe from this list: send the line "unsubscribe xmail" in
>the body of a message to [EMAIL PROTECTED]
>For general help: send the line "help" in the body of a message to
>[EMAIL PROTECTED]


-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]


-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]




[xmail] Re: eyeXmail - more than one command

2002-09-25 Thread Tracy

I have a class library I wrote in VB.NET which handles all this (including 
using standard TCP to communicate - ie. not using external programs for the 
communications with the server). It exposes everything as an object model, 
and maps the object model to the underlying control commands.

It is not fully tested, but if you want a copy, send me an e-mail OTL and 
I'll share.

At 13:05 9/25/2002 +0200, Javier Navarro wrote:

>   Hello,
>
>   I'm developing a VB application to administrate Xmail server (create 
> domains, users...) and I'm using eyeXmail to send commands to the server. 
> Is it possible to send more than one command to Xmail server with the 
> same ctrlclnt object?
>
>   In my tests I have had to create and destroy a ctrlclnt object each 
> time I want to send a command to the server because if I try to send two 
> commands, first is executed but second causes an error.
>
>   This is part of my code:
>
>   Set xmail = New eyeXMail.ctrlclnt
>   xmail.ServerAddress = "127.0.0.1"
>   xmail.ServerPort = 6017
>   xmail.ServerUser = "root"
>   xmail.ServerPassword = "password"
>   xmail.UseMD5 = True
>   Call xmail.ExecuteCommand("domainlist", "", "", 1)
>[... code ...]
>   Call xmail.ExecuteCommand("userlist", CStr(domain), "", 1)
>[... code ...]
>   Set xmail = nothing
>
>   The second call to xmail.ExecuteCommand causes the error:
>   Error '-2147352567 (80020009)'
>   Could not connect: [ERROR] Bad CTRL command syntax
>   [ERROR] Invalid response during login.
>   [ERROR] -00108 Bad CTRL command syntax
>
>   But If I create and destroy the eyeXMail.ctrlclnt object for each call 
> it works fine...
>
>   Can anybody help me?
>
>   Thanks in advantage. Best regards,
>
>   Javier Navarro
>
>
>-
>To unsubscribe from this list: send the line "unsubscribe xmail" in
>the body of a message to [EMAIL PROTECTED]
>For general help: send the line "help" in the body of a message to
>[EMAIL PROTECTED]


-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]




[xmail] eyeXmail - more than one command

2002-09-25 Thread Javier Navarro

  Hello,

  I'm developing a VB application to administrate Xmail server (create domains, 
users...) and I'm using eyeXmail to send commands to the server. Is it possible to 
send more than one command to Xmail server with the same ctrlclnt object?

  In my tests I have had to create and destroy a ctrlclnt object each time I want to 
send a command to the server because if I try to send two commands, first is executed 
but second causes an error.

  This is part of my code:

  Set xmail = New eyeXMail.ctrlclnt
  xmail.ServerAddress = "127.0.0.1"
  xmail.ServerPort = 6017
  xmail.ServerUser = "root"
  xmail.ServerPassword = "password"
  xmail.UseMD5 = True
  Call xmail.ExecuteCommand("domainlist", "", "", 1)
[... code ...]
  Call xmail.ExecuteCommand("userlist", CStr(domain), "", 1)
[... code ...]
  Set xmail = nothing

  The second call to xmail.ExecuteCommand causes the error:
  Error '-2147352567 (80020009)'
  Could not connect: [ERROR] Bad CTRL command syntax
  [ERROR] Invalid response during login.
  [ERROR] -00108 Bad CTRL command syntax

  But If I create and destroy the eyeXMail.ctrlclnt object for each call it works 
fine...

  Can anybody help me?

  Thanks in advantage. Best regards,

  Javier Navarro


-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]




[xmail] Re: sync triggering

2002-09-25 Thread Gerrit P. Haase


Spyros schrieb:


> Hiya people,

> Another question would be, what time (when in general)
> does xmail trigger a sync to the outside ?

> Is it at random time intervals ? Pre-defined time
> intervals ? User-definable ??

> Any ideas ?

In the docs (Command Line):

[PSYNC]
-Yi interval= Set external POP3 accounts sync interval. Default 120
-Yt nthreads= Set the number of POP3 sync threads


Gerrit
-- 
=^..^=

-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]




[xmail] Re: sync triggering

2002-09-25 Thread Frederik Gallon


User definable by command switches.. But in your case I would use the
..psynctrigger file since you are using ISDN dialup... So when connection is
made run a batch program copiing .psynctrigger into mailroot and mail is
fetched.

Did you figure out how to send mails to the outside .. Trough ISP-SMTP or
doing your own DNS queries?? (Some ISP have filters on port 25 and do not
allow sending out mail to other than their SMTP-server)


-Oorspronkelijk bericht-
Van: Spyros Tsiolis [mailto:[EMAIL PROTECTED]] 
Verzonden: woensdag 25 september 2002 11:40
Aan: [EMAIL PROTECTED]
Onderwerp: [xmail] sync triggering



Hiya people,

Another question would be, what time (when in general)
does xmail trigger a sync to the outside ?

Is it at random time intervals ? Pre-defined time
intervals ? User-definable ??

Any ideas ?

TIA,


s.





-
"I merely function as a channel that filters music through
the chaos of noise"
- Vangelis

_
Join the world's largest e-mail service with MSN Hotmail. 
http://www.hotmail.com

-
To unsubscribe from this list: send the line "unsubscribe xmail" in the body
of a message to [EMAIL PROTECTED] For general help: send the line
"help" in the body of a message to [EMAIL PROTECTED]
-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]




[xmail] sync triggering

2002-09-25 Thread Spyros Tsiolis


Hiya people,

Another question would be, what time (when in general)
does xmail trigger a sync to the outside ?

Is it at random time intervals ? Pre-defined time
intervals ? User-definable ??

Any ideas ?

TIA,


s.





-
"I merely function as a channel that filters music through
the chaos of noise"
- Vangelis

_
Join the world’s largest e-mail service with MSN Hotmail. 
http://www.hotmail.com

-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]