Re: Problem with sendmail, error code 67.

2007-07-03 Thread Shams Fantar

Richard A Nelson wrote:

On Mon, 2 Jul 2007, Shams Fantar wrote:

I have used Google to have the answers at my problem, but  I did not 
find anything.


You need more practice, the 1st page of my only search turned up this:
-- 


Take a look at /usr/include/sysexits.h on your system.  It lists all of
the standard exit codes for programs.  On a Linux 2.0.35 system I
have:

   #define EX_NOUSER   67  /* addressee unknown */

And further up:

   *  EX_NOUSER -- The user specified did not exist.  This might
   *  be used for mail addresses or remote logins.
 





I did not know /usr/include/sysexits.h. ;-)



If I make 'sendmail -s testing [EMAIL PROTECTED]', the prompt 
doesn't come back and there is no message. But if I make 'mail -s 
testing [EMAIL PROTECTED]', I have an error message : Can't send 
mail: sendmail process failed with error code 67


sendmail and mail are different commands, with different syntax, it
isn't surprising that you see different results.


Yes, I know, I tested just.




My php.ini for mail() : sendmail_path = /usr/sbin/sendmail -t -i


Looks good


If I want to use mail(), I can't !


Because you are passing bad data, have a misconfigured mta, or both.


There is nothing in the logs.


If there is truly nothing in /var/log/mail.log, it implies that sendmail
saw the mail recipient as being local, and as such, refused to accept
the mail for a non-existant local user.


Yes, you are right. But, what is the solution ? I have no idea...

Logs of errors : http://jumble.snurf.info/pb_sendmail



-- 


$ mail -stesting [EMAIL PROTECTED]
.
Cc: Null message body; hope that's ok
/home/cowboy/dead.letter... Saved message in /home/cowboy/dead.letter
Can't send mail: sendmail process failed with error code 67
-



--
Shams Fantar (http://snurf.info)


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Re: Problem with sendmail, error code 67.

2007-07-03 Thread Shams Fantar

Nelson Castillo wrote:

On 7/2/07, Richard A Nelson [EMAIL PROTECTED] wrote:

On Mon, 2 Jul 2007, Shams Fantar wrote:

 I have used Google to have the answers at my problem, but  I did 
not find

 anything.

You need more practice, the 1st page of my only search turned up this:
-- 


Take a look at /usr/include/sysexits.h on your system.  It lists all of
the standard exit codes for programs.  On a Linux 2.0.35 system I
have:

#define EX_NOUSER   67  /* addressee unknown */


Gee. I thought Error 67 meant Migrate to postfix.

Couldn't help it,
N.-



For the moment, I use sendmail. ;)

--
Shams Fantar (http://snurf.info)


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Re: Problem with sendmail, error code 67.

2007-07-03 Thread Richard A Nelson

On Tue, 3 Jul 2007, Shams Fantar wrote:


If there is truly nothing in /var/log/mail.log, it implies that sendmail
saw the mail recipient as being local, and as such, refused to accept
the mail for a non-existant local user.


Yes, you are right.


As if that was ever in question :)


But, what is the solution ? I have no idea...

Logs of errors : http://jumble.snurf.info/pb_sendmail


Your basic problem is the common case 'Broken DNS'

* Domain of sender address [EMAIL PROTECTED] does not exist

  Is sethurf part of the linux62.org domain ?  If so, you are likely
  missing 'always add domain' and likely masquerade settings for
  sendmail, and also missing a DNS entry for sethurf.

* l63FQslM017895: [EMAIL PROTECTED], ... DSN: User unknown

  This implies that the current host thinks it is linux62.org, but
  does not have a user by the name of sfantar.

  However, I don't buy this message because it appears to be fallout
  from a mis-parse of the original rejection based on thesurf not being
  resolvable (they both use the same dsn code: dsn=5.1.8)

You appear to be new MTA setup/mgmt issues, and may best be served by
visiting the IRC channel #sendmail on freenode...  There are many
knowledgable people there, and I am usually there as one (or more of)
cowboy/outlaw/renegade - depending upon my location/mood.


--
Rick Nelson
Myxie I know. Unless htere is a cookie monster somewhere between us tat 
muches the amil.
Myxie amil/mail
Myxie muches/munches tat/that htere/there
HippieGuy heheh
HippieGuy problems? :)
* Myxie needs an ircii addon that pipes teh command line through ispell :)
-- Seen on #Debian


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Problem with sendmail, error code 67.

2007-07-02 Thread Shams Fantar

Hello,

I have used Google to have the answers at my problem, but  I did not 
find anything.


The problem is that I can't use the function mail() of php.

If I make 'sendmail -s testing [EMAIL PROTECTED]', the prompt doesn't 
come back and there is no message. But if I make 'mail -s testing 
[EMAIL PROTECTED]', I have an error message : Can't send mail: sendmail 
process failed with error code 67


My php.ini for mail() : sendmail_path = /usr/sbin/sendmail -t -i

If I want to use mail(), I can't !

There is nothing in the logs.

Have you ideas ? Solutions ?

Sendmail's version is 8.13.

Thank you,

--
Shams Fantar (http://snurf.info)


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Re: Problem with sendmail, error code 67.

2007-07-02 Thread Shams Fantar

Shams Fantar wrote:

Hello,

I have used Google to have the answers at my problem, but  I did not 
find anything.


The problem is that I can't use the function mail() of php.

If I make 'sendmail -s testing [EMAIL PROTECTED]', the prompt doesn't 
come back and there is no message. But if I make 'mail -s testing 
[EMAIL PROTECTED]', I have an error message : Can't send mail: 
sendmail process failed with error code 67


My php.ini for mail() : sendmail_path = /usr/sbin/sendmail -t -i

If I want to use mail(), I can't !

There is nothing in the logs.

Have you ideas ? Solutions ?

Sendmail's version is 8.13.

Thank you,



No idea ?

--
Shams Fantar (http://snurf.info)


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Re: Problem with sendmail, error code 67.

2007-07-02 Thread Richard A Nelson

On Mon, 2 Jul 2007, Shams Fantar wrote:

I have used Google to have the answers at my problem, but  I did not find 
anything.


You need more practice, the 1st page of my only search turned up this:
--
Take a look at /usr/include/sysexits.h on your system.  It lists all of
the standard exit codes for programs.  On a Linux 2.0.35 system I
have:

   #define EX_NOUSER   67  /* addressee unknown */

And further up:

   *  EX_NOUSER -- The user specified did not exist.  This might
   *  be used for mail addresses or remote logins.



If I make 'sendmail -s testing [EMAIL PROTECTED]', the prompt doesn't come 
back and there is no message. But if I make 'mail -s testing 
[EMAIL PROTECTED]', I have an error message : Can't send mail: sendmail 
process failed with error code 67


sendmail and mail are different commands, with different syntax, it
isn't surprising that you see different results.


My php.ini for mail() : sendmail_path = /usr/sbin/sendmail -t -i


Looks good


If I want to use mail(), I can't !


Because you are passing bad data, have a misconfigured mta, or both.


There is nothing in the logs.


If there is truly nothing in /var/log/mail.log, it implies that sendmail
saw the mail recipient as being local, and as such, refused to accept
the mail for a non-existant local user.

--
$ mail -stesting [EMAIL PROTECTED]
.
Cc: 
Null message body; hope that's ok

/home/cowboy/dead.letter... Saved message in /home/cowboy/dead.letter
Can't send mail: sendmail process failed with error code 67
-

--
Rick Nelson
hop kb: I demand integrity and honesty in those who i do business with
hop i know my demands are unreasonable, but a guy can dream, can't he?


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Re: Problem with sendmail, error code 67.

2007-07-02 Thread Nelson Castillo

On 7/2/07, Richard A Nelson [EMAIL PROTECTED] wrote:

On Mon, 2 Jul 2007, Shams Fantar wrote:

 I have used Google to have the answers at my problem, but  I did not find
 anything.

You need more practice, the 1st page of my only search turned up this:
--
Take a look at /usr/include/sysexits.h on your system.  It lists all of
the standard exit codes for programs.  On a Linux 2.0.35 system I
have:

#define EX_NOUSER   67  /* addressee unknown */


Gee. I thought Error 67 meant Migrate to postfix.

Couldn't help it,
N.-

--
http://arhuaco.org
http://emQbit.com


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]




Re: Problem mit Sendmail und Cyrus

2006-07-03 Thread Bjoern Burger

Für die Nachwelt...

Hallo,

man muss in der cyrusv2.m4 einen Eintrag ändern damit es funktioniert.

---cyrusv2.m4--Ausschnitt

#
###   Cyrus V2 Mailer specification   ###
#

VERSIONID(`$Id: cyrusv2.m4,v 1.1 2002/06/01 21:14:57 ca Exp $')

Mcyrusv2,   P=[IPC], F=_MODMF_(CONCAT(_DEF_CYRUSV2_MAILER_FLAGS,
CYRUSV2_MAI
LER_FLAGS), `CYRUSV2'),
S=EnvFromSMTP/HdrFromL, R=EnvToL/HdrToL, E=\r\n,

---cyrusv2.m4 Ausschnitt

Die letzte hier angezeigte Zeile ändern in :

S=EnvFromSMTP/HdrFromL, R=EnvToSMTP/HdrToL, E=\r\n,

Dann sollte es gehen.

tö


--
Haeufig gestellte Fragen und Antworten (FAQ): 
http://www.de.debian.org/debian-user-german-FAQ/


Zum AUSTRAGEN schicken Sie eine Mail an [EMAIL PROTECTED]
mit dem Subject unsubscribe. Probleme? Mail an [EMAIL PROTECTED] (engl)



Re: Problem mit Sendmail und Cyrus

2006-05-25 Thread Matthias Haegele

Bjoern Burger schrieb:

Hallo,

erstmal hoffe ich das ich dieses Thema in dieser Mailingliste ansprechen 
darf. Wenn dies hier unpassend ist, wäre es nett wenn mich jemand drauf 
aufmerksam macht.


Ich will einen Mailserver einrichten...und schaffe es nicht so wie ich 
mir das vorgestellt habe.

Die Vorgaben sind : Debian + Sendmail + Cyrus + MySQL Datenbank

Das Sendmail soll genutzt werden, da andere Mailserver in der Umgebung 
auch Sendmail nutzen und so alle Mailserver auf dem gleichen MTA beruhen.


btw:
In Linux Magazin 05/06 ist ein ausführlicher Artikel zu Sendmail drin 
(S.76)
Listings: ftp://linux-magazin.de/pub/listings/magazin/2006/05/Sendmail/ 
   (url ist case-sensitive!)


hth
MH


--
Haeufig gestellte Fragen und Antworten (FAQ): 
http://www.de.debian.org/debian-user-german-FAQ/


Zum AUSTRAGEN schicken Sie eine Mail an [EMAIL PROTECTED]
mit dem Subject unsubscribe. Probleme? Mail an [EMAIL PROTECTED] (engl)



Re: Problem mit Sendmail und Cyrus

2006-05-24 Thread Matthias Haegele

Bjoern Burger schrieb:

Hallo,


Hi!



erstmal hoffe ich das ich dieses Thema in dieser Mailingliste ansprechen 
darf. Wenn dies hier unpassend ist, wäre es nett wenn mich jemand drauf 
aufmerksam macht.


Ich will einen Mailserver einrichten...und schaffe es nicht so wie ich 
mir das vorgestellt habe.

Die Vorgaben sind : Debian + Sendmail + Cyrus + MySQL Datenbank

Das Sendmail soll genutzt werden, da andere Mailserver in der Umgebung 
auch Sendmail nutzen und so alle Mailserver auf dem gleichen MTA beruhen.


Nimm entweder Postfix oder Sendmail-X 
(/*url:http://www.pro-linux.de/news/2005/8844.html)
Sendmail ist imho obsolete und tricky zu konfigurieren ich würde keine 
SW einsetzen die schon in dem Moment indem ich sie installiere 
outdated ist ...

(Beide sind Sendmail-kompatibel)

Wenn du noch nie was mit Mailservern gemacht hast würde ich zum Einstieg 
ganz sicher nicht sendmail (das alte) nehmen ...


Als meine working-solution hat sich Postfix herauskristallisiert da 
ich dazu am meisten Doku (auch gedruckt) und aktuell ...


hth
MH


--
Haeufig gestellte Fragen und Antworten (FAQ): 
http://www.de.debian.org/debian-user-german-FAQ/


Zum AUSTRAGEN schicken Sie eine Mail an [EMAIL PROTECTED]
mit dem Subject unsubscribe. Probleme? Mail an [EMAIL PROTECTED] (engl)



Problem mit Sendmail und Cyrus

2006-05-23 Thread Bjoern Burger

Hallo,

erstmal hoffe ich das ich dieses Thema in dieser Mailingliste ansprechen 
darf. Wenn dies hier unpassend ist, wäre es nett wenn mich jemand drauf 
aufmerksam macht.


Ich will einen Mailserver einrichten...und schaffe es nicht so wie ich 
mir das vorgestellt habe.

Die Vorgaben sind : Debian + Sendmail + Cyrus + MySQL Datenbank

Das Sendmail soll genutzt werden, da andere Mailserver in der Umgebung 
auch Sendmail nutzen und so alle Mailserver auf dem gleichen MTA beruhen.


Die Accountdaten sollen in einem späteren Schritt in der MySQL Datenbank 
gespeichert werden. (Webcyradm)


Ich habe nun Debian installiert, Sendmail + Cyrus22(aus Testing) auch.

Cyrus22 aus dem Testing Zweig, da wir unterstützung für Virtuelle 
Domains benötigen.


Nun mein Problem:

Ich habe über den cyradm eine Mailbox erstellt [EMAIL PROTECTED]
Und Sendmail nimmt Mails für diese Domain an.

Beim versuch jedoch eine Mail an [EMAIL PROTECTED] zu schicken wird im 
Mail.log eingetragen, das der user nicht vorhanden wäre.


Es wird aus [EMAIL PROTECTED] beim überprüfen testdomain.tld!user.test.
Dies kann er natürlich nicht erfolgreich gegenüber dem Cyrus 
authentifizieren.


Ich bin der Verzweifelung nahe. Ich schaffe es nicht [EMAIL PROTECTED] 
gegenüber dem cyrus zu Authentifizieren. Meinetwegen darf die Mailbox 
auch [EMAIL PROTECTED] heißen.

Ich habe versucht die cyrusv2.m4 anzupassen, aber ohne erfolg.

Ich vermute das er im Ruleset 3 aus dem [EMAIL PROTECTED] einen UUCP 
Namen macht. Is das richtig ?


Ich hatte schon mein Glück mit verschiedenen Features versucht die mir 
sinnig erschienen...z.B. nouucp. Aber das behob mein Problem nicht.


Ich hoffe es kann mir jemand die Lösung verraten oder mich wenigstens in 
die richtige Richtung schubsen.


Anbei habe ich einige Ausszüge aus den Configfiles und Logfiles, von 
denen ich hoffe das mir jemand mit diesen Infos meinen Fehler aufzeigen 
kann.


Ich wäre zutiefst dankbar wenn mir Jemand helfen könnte.

B²

Achja, testdomain.tld ist nur ein Platzhalter hier ansonsten eine reale 
Domain dessen MX eintrag auf den Server zeigt.


---schnipp---

/var/log/mail.log

May 23 16:26:32 Servername cyrus/master[25861]: about to exec 
/usr/lib/cyrus/bin/lmtpd

May 23 16:26:32 Servername cyrus/lmtpunix[25861]: executed
May 23 16:26:32 Servername cyrus/lmtpunix[25861]: accepted connection
May 23 16:26:32 Servername cyrus/lmtpunix[25861]: lmtp connection 
preauth'd as postman
May 23 16:26:32 Servername cyrus/lmtpunix[25861]: 
verify_user(testdomain.tld!user.test) failed: Mailbox does not exist
May 23 16:26:32 Servername sm-mta[25860]: k4NEQVsY025858: 
to=[EMAIL PROTECTED], delay=00:00:00, xdelay=00:00:00, 
mailer=cyrusv2, pri=121104, relay=localhost, dsn=5.1.1, stat=User unknown


-

/etc/mail/sendmail.mc

FEATURE(`mailertable', `hash -o /etc/mail/mailertable')
FEATURE(`relay_based_on_MX')
FEATURE(`preserve_local_plus_detail')
FEATURE(`nouucp', `reject')dnl

dnl # Masquerading options
dnl # FEATURE(`always_add_domain')dnl
dnl # MASQUERADE_AS(`Servername.unseredomain.tld')dnl
dnl # FEATURE(`allmasquerade')dnl
dnl # FEATURE(`masquerade_envelope')dnl

MAILER_DEFINITIONS
MAILER(`local')dnl
MAILER(`smtp')dnl
MAILER(`cyrusv2')dnl

-

/usr/share/sendmail/cf/mailer/cyrusv2.m4

_DEFIFNOT(`_DEF_CYRUSV2_MAILER_FLAGS', `lsDFMnqXz')
_DEFIFNOT(`CYRUSV2_MAILER_FLAGS', `A@/:|m')
ifdef(`CYRUSV2_MAILER_ARGS',, `define(`CYRUSV2_MAILER_ARGS', `FILE 
/var/run/cyrus/socket/lmtp')')
define(`_CYRUSV2_QGRP', `ifelse(defn(`CYRUSV2_MAILER_QGRP'),`',`', ` 
Q=CYRUSV2_MAILER_QGRP,')')dnl


POPDIVERT

#
###   Cyrus V2 Mailer specification   ###
#

VERSIONID(`$Id: cyrusv2.m4,v 1.1 2002/06/01 21:14:57 ca Exp $')

Mcyrusv2,   P=[IPC], F=_MODMF_(CONCAT(_DEF_CYRUSV2_MAILER_FLAGS, 
CYRUSV2_MAILER_FLAGS), `CYRUSV2'),

S=EnvFromSMTP/HdrFromSMTP, R=EnvToSMTP, E=\r\n,
_OPTINS(`CYRUSV2_MAILER_MAXMSGS', `m=', `, 
')_OPTINS(`CYRUSV2_MAILER_MAXRCPTS', `r=', `, 
')_OPTINS(`CYRUSV2_MAILER_CHARSET', `C=', `, 
')T=DNS/RFC822/SMTP,_CYRUSV2_QGRP

A=CYRUSV2_MAILER_ARGS


--
Haeufig gestellte Fragen und Antworten (FAQ): 
http://www.de.debian.org/debian-user-german-FAQ/


Zum AUSTRAGEN schicken Sie eine Mail an [EMAIL PROTECTED]
mit dem Subject unsubscribe. Probleme? Mail an [EMAIL PROTECTED] (engl)



Re: problem installing Sendmail

2004-08-22 Thread listcomm

 I'm familiar with, and comfortable with, Sendmail.  So, when Debian
 tries to install Exim I just say, No thank you, and install
 Sendmail.  It was no problem at all.

I think...  based on what I've heard here on this topic, that If I Had
It To Do Over Again, that is what I would do also.
But I'm a lot less sanguine about uninstalling exim now and installing
sendmail instead, reassurances about clean uninstalls
notwithsatanding.

This all does remind me, however, of dealing with competing EDA
packages:  one could always get support out of an EDA vendor as long as
they were aware that you might shift allegiance to their competition at
the drop of a hat.  So maybe competing MDAs aren't such a bad thing...


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: problem installing Sendmail

2004-08-20 Thread John Summerfield
s. keeling wrote:
Incoming from [EMAIL PROTECTED]:
 

Nah.  Debian's real sane that way.  If you install exim, it first
uninstalls your other MTA.
 

You mean, it *tries* to uninstall it...  all it takes is one screw-up
to put me in the O-zone with things like that.  What if (*just*
for insatance) the other MTA used different versions of some packages
   

That's the difference between rpm and deb.  When you uninstall a deb,
dpkg runs the uninstall script that arrived when you installed it.
The uninstall script was supplied by the package maintainer, and he
knows what's to be uninstalled because he's the one who decided what
would be installed.  If it fails, that's what reportbug is for.
 

There are enough differences between rpm-based distros and deb-based 
distros without making them up.

If you want to differentiate between the two package management systems, 
then do your research instead of inventing facts.

rpm packages can have scripts to run at install time, and at uninstall 
time.  rpm also have triggers which, I think, are scripts to run when 
some other package is installed/removed.

If fact, I think that since rpm lacks few features of dpkg, and has some 
that I'd like to see incorporated into dpkg:
Can dpkg verify the integrity of installed pakcages? rpm can.
Can dpkg tell you when packages were installed?rpm can.
Can dpkg produce a formatted list (think printf) of installed packages 
and/or their contents? rpm can.

The most significant difference between the Debian and RH approaches to 
package management is that, until recently RH had nothing equivalent to 
apt-get and such. Now, the rpm world has up2date, yum and even apt-get. 
I have used (lightly) up2date and it seemed quite as nice as apt-get: 
better if you find a GUI helps your productivity.

I have not used yum or apt-get on an rpm-based system, nor synaptic and 
aptitude on Debian, so I won't comment further on those.



--
Cheers
John
-- spambait
[EMAIL PROTECTED]  [EMAIL PROTECTED]
Tourist pics http://portgeographe.environmentaldisasters.cds.merseine.nu/
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: problem installing Sendmail

2004-08-19 Thread John Summerfield
Carlos Sousa wrote:
On Sat, 14 Aug 2004 17:15:23 +0800 John Summerfield wrote:
(replying manually to the list, as I suspect [EMAIL PROTECTED]
won't be a good recipient for my purposes ;)
 

:-)
See what it resolves to.
Since tbird doesn't have reply to list I reply to all then prune. 
Setting reply-to is a wonderful way to stop people sending me 
duplicates. Thanks M.

I did try 
sendmail on woody, but discovered it's brken, and having heard good 
reports of Postfix, I tried that and that's what I use now.
   

Good for you. But, just, for the record, I've been using sendmail
since Debian Potato, and I haven't the faintest idea what breakage
you're talking about. In all these years my sendmail has been
performing securely and flawlessly.
 

When I tried the Woody version, the configuration would only work if I 
did it from a particular directory. I don't recall the details now, it 
was back when Woody was new.


--
Cheers
John
-- spambait
[EMAIL PROTECTED]  [EMAIL PROTECTED]
Tourist pics http://portgeographe.environmentaldisasters.cds.merseine.nu/
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: problem installing Sendmail

2004-08-17 Thread listcomm
 What do you mean, may come back ... again? I believe sendmail is still
 the most widely used MTA on the Internet. It's never gone away.

Well, I don't keep track of these things in detail.  I started hacking
sendmail in 1984 or something, I forget.  It looked like it worked
OK to me.  Then sometime a few years back I noticed that it had been
replaced with something (smail?) on one of the Sun systems I was
working on.  Since then I've noticed various other MTAs proliferating.
Since I primarily view computers as a means to and end and not an end
in themselves, AFAIK cows come and cows go, but the bull stays around
forever, so I just deal with whatever has landed in my lap at the
moment and try to make it work.

When I installed Debian, somehow I ended up with exim,
which means it must have installed by default, since I wouldn't have
picked it, because I didn't know what it was.  So, by dint of the
fact that it installed by default, I expect it must be Mail Transfer
Agent of the Week, or Current Trendy Mail Transfer Agent, or
whateveritis...

If I really thought sendmail was going to ultimately triumph and win
the
Battle of the Mail Transfer Agents, I would probably have installed
it,
and support is definitely the main issue, since sooner or later whatever
trendy MTA I happen to be using is going to break.  You could be right;
exim and smail and flailmail and everybodybailmail and whatever
else
could all lose in the end, and I could end up wasting the time I'm
spending
learning to bludgeon exim into compliance.  Wouldn't be the first
time I've followed a vapid software trend to perdition...  won't be the
last...


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: problem installing Sendmail

2004-08-17 Thread listcomm

 Nah.  Debian's real sane that way.  If you install exim, it first
 uninstalls your other MTA.

You mean, it *tries* to uninstall it...  all it takes is one screw-up
to put me in the O-zone with things like that.  What if (*just*
for insatance) the other MTA used different versions of some packages
than the new MTA?  I'm sure all the install software tries to keep
track of all that, and probably does a decent job... 96.432% of the
time.  But, my experience generally is if it works, don't fix it...
(we'll see if it really works...)

 btw, apt-cache search exim mentions exim-doc.  Highly recommended.

Okay - now you've touched on something I was curious about in an earlier
thread, and I've dug into it some more:

The man page for exim also mentions exim-doc.  I loaded the
exim-doc package.  It created the /usr/share/doc/exim-doc directory
(which is in addition to the usual /usr/share/doc/exim directory).
But there's nothing in the exim-doc directory, to speak of.  (There
is the usual assortment of stuff in the exim directory)

However, I think the exim-doc package actually is loaded for the
access via the info command - am I right?  There is quite a bit
of additional information available via info exim.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: problem installing Sendmail

2004-08-17 Thread Paul Scott
[EMAIL PROTECTED] wrote:
 

btw, apt-cache search exim mentions exim-doc.  Highly recommended.
   

Okay - now you've touched on something I was curious about in an earlier
thread, and I've dug into it some more:
The man page for exim also mentions exim-doc.  I loaded the
exim-doc package.  It created the /usr/share/doc/exim-doc directory
(which is in addition to the usual /usr/share/doc/exim directory).
But there's nothing in the exim-doc directory, to speak of.  (There
is the usual assortment of stuff in the exim directory)
However, I think the exim-doc package actually is loaded for the
access via the info command - am I right?  There is quite a bit
of additional information available via info exim.
 

There are several ways to list the files in a package (like dpkg -L) 
which will show that 2 files from exim-doc go to /usr/share/doc and over 
20 files go to /usr/share/info.

BTW there is also exim-doc-html.
Paul Scott
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: problem installing Sendmail

2004-08-17 Thread s. keeling
Incoming from [EMAIL PROTECTED]:
 
  Nah.  Debian's real sane that way.  If you install exim, it first
  uninstalls your other MTA.
 
 You mean, it *tries* to uninstall it...  all it takes is one screw-up
 to put me in the O-zone with things like that.  What if (*just*
 for insatance) the other MTA used different versions of some packages

That's the difference between rpm and deb.  When you uninstall a deb,
dpkg runs the uninstall script that arrived when you installed it.
The uninstall script was supplied by the package maintainer, and he
knows what's to be uninstalled because he's the one who decided what
would be installed.  If it fails, that's what reportbug is for.

To get his package into Debian, he's had to fight it out with all the
other packages, ensuring he really does understand the package's
situation.  No Debian package is just whacked out and submitted.  It
has to fight for the right to exist.


-- 
Any technology distinguishable from magic is insufficiently advanced.
(*)   http://www.spots.ab.ca/~keeling 
- -


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: problem installing Sendmail

2004-08-15 Thread Raquel Rice
On Fri, 13 Aug 2004 23:23:57 -0700
[EMAIL PROTECTED] wrote:

 
  It is available.  Fire up one of the installers, turn off what
  you don't want, turn on what you do, then let 'er rip.  You may
  need to be in something like Custom Install Mode or something
  to get this, but that's just to save newbie butts.  You can do
  what you want to.
 
 I thought about that, but, (1) since exim is already installed
 as an MTA, I was dubious about installing *another* one, *whether
 or not* I would have to uninstall exim.  Knowing no more than
 I do, I would suspect that I might end up in more trouble, and end
 up spending more time that way, than I would by just learning
 about exim, (2) I notice that sendmail is a virtual link to
 the exim executable - which causes
 me to further suspect possible miscegenation between sendmail
 support facilities (possibly even in the kernel) and exim
 support facilities- which then causes further paranoia per (1). 
 (I have many, many burn scars...  some of them in unmentionable
 places...), (3) if, and not when,
 the MTA I'm using blows up and embeds shrapnel and rice grains in
 my butt,
 the most important thing will be, for which MTA I can get some
 support- which is determined by the multivariable trendiness index
 of the product...
  
   Reason?: THE STUFF IS FREE.  If I were paying for it, I'd feel
   free to
  
  Very true, but it is your box.  I imagine the sendmail package
  maintainer needs love just like the others.  :-)  Then again,
  maybe not.  He may just be doing it so he doesn't have to run
  exim or postfix; I don't know.
 
 Hey, his pet may come back into vogue again, you never know. 
 These things
 change with the breeze...
 
 of course, some things are like tattoos - if you've got one,
 you better *hope* to hell they don't go seriously out of style
 
 (interesting, though - is there some internecine
 warfare going on between alternately trendy MTA package
 developers?*That* would be fun to watch...  from a healthy
 distance...)
 

I'm familiar with, and comfortable with, Sendmail.  So, when Debian
tries to install Exim I just say, No thank you, and install
Sendmail.  It was no problem at all.

-- 
Raquel

Success in its highest and noblest form calls for peace of mind and
enjoyment and happiness which come only to the man who has found the
work that he likes best.
  --Napoleon Hill


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: problem installing Sendmail

2004-08-15 Thread Shu Hung (Koala)
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Carlos Sousa wrote:
| The sendmail package asks you a few questions upon installation, so
|  as to configure it properly for your machine. Don't you remember
| answering them? You really should take software installation a lot
| less lightly...
I've answered the config questions of course
But I'm not sure if I answered it right...
Here is my sendmail.mc
Is there any thing wrong?
divert(-1)dnl
#-
# $Sendmail: debproto.mc,v 8.12.11 2004-04-22 15:43:34 cowboy Exp $
#
# Copyright (c) 1998-2003 Richard Nelson.  All Rights Reserved.
#
# cf/debian/sendmail.mc.  Generated from sendmail.mc.in by configure.
#
# sendmail.mc prototype config file for building Sendmail 8.12.11
#
# Note: the .in file supports 8.7.6 - 9.0.0, but the generated
#   file is customized to the version noted above.
#
# This file is used to configure Sendmail for use with Debian systems.
#
# If you modify this file, you will have to regenerate
/etc/mail/sendmail.cf
# by running this file through the m4 preprocessor via one of the
following:
#   * `sendmailconfig`
#   * `make`
#   * `m4 /etc/mail/sendmail.mc  /etc/mail/sendmail.cf`
# The first two options are preferred as they will also update other
files
# that depend upon the contents of this file.
#
# The best documentation for this .mc file is:
# /usr/share/doc/sendmail-doc/cf.README.gz
#
#-
divert(0)dnl
#
#   Copyright (c) 1998-2002 Richard Nelson.  All Rights Reserved.
#
#  This file is used to configure Sendmail for use with Debian systems.
#
define(`_USE_ETC_MAIL_')dnl
include(`/usr/share/sendmail/cf/m4/cf.m4')dnl
VERSIONID(`$Id: sendmail.mc, v 8.12.11-5 2004-04-22 15:43:34 cowboy
Exp $')
OSTYPE(`debian')dnl
DOMAIN(`debian-mta')dnl
dnl #
dnl # General defines
dnl #
dnl # SAFE_FILE_ENV: [undefined] If set, sendmail will do a chroot()
dnl #   into this directory before writing files.
dnl #   If *all* your user accounts are under /home then use that
dnl #   instead - it will prevent any writes outside of /home !
dnl #   define(`confSAFE_FILE_ENV', `')dnl
LOCAL_CONFIG
FEATURE(`nullclient', NONE)dnl
LOCAL_CONFIG
## Custom configurations below (will be preserved)
| The Name server bit seems to indicate a hostname/ip resolving
| problem. Can you browse the web from that machine? Did you have an
| MTA previously, and could you send mail then? Can you ping outside
| hosts?
I can browse the web.
I haven't configed it to use MTA previously and I haven't sent any
message before
|
| It may be the case that you have to get information from the
| network admin in order to get your sendmail to route mail properly
| for your network environment.
Sorry...I know it's stupid but...can you explain more?
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.5 (MingW32)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org
iD8DBQFBIBbu4uyclScWNtARAu3PAJ9hmpHe67BGRE2kKg/7SocJusmMtACglIBD
e1bKuG5+xBeaF4sDKh9XgAY=
=lok3
-END PGP SIGNATURE-
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: problem installing Sendmail

2004-08-15 Thread Carlos Sousa
On Mon, 16 Aug 2004 10:07:43 +0800 Shu Hung (Koala) wrote:
 Here is my sendmail.mc
 Is there any thing wrong?

 ...
 LOCAL_CONFIG
 FEATURE(`nullclient', NONE)dnl
 
 LOCAL_CONFIG
 ## Custom configurations below (will be preserved)

This appears to be the configuration for local mail only. No wonder
you couldn't send mail to the internet...

Perhaps the best option would be to reconfigure sendmail from scratch.
By looking at the scripts, it seems you can do that with the commands
(as root):

   rm -f /etc/mail/sendmail.mc
   sendmailconfig

and answer very carefully the questions that will appear, especially
the one concerning the smarthost, which should be the hostname of
your SMTP server, which will route mail to the outside world.

If you expect to receive answers you will then have to configure it
to rewrite the sender address with a publicly valid one, but that's
another story.

 | It may be the case that you have to get information from the
 | network admin in order to get your sendmail to route mail properly
 | for your network environment.
 
 Sorry...I know it's stupid but...can you explain more?

Well, if you're on a LAN, maybe one of the computers is already
configured as a mail server that should be used as smarthost, and
possibly handling the local address rewrites I mentioned.

HTH,

-- 
Carlos Sousa
http://vbc.dyndns.org/


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: problem installing Sendmail

2004-08-15 Thread Carlos Sousa
On Mon, 16 Aug 2004 10:07:43 +0800 Shu Hung (Koala) wrote:
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1
 ...
 I've answered the config questions of course
 But I'm not sure if I answered it right...

I think the Debian sendmail package maintainer has already contacted
you about this matter. If anyone can sort you out, he's da man.

-- 
Carlos Sousa
http://vbc.dyndns.org/


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: problem installing Sendmail

2004-08-15 Thread Alvin Oga

hi ya

On Mon, 16 Aug 2004, Shu Hung (Koala) wrote:

 I've answered the config questions of course
 But I'm not sure if I answered it right...
 
 Here is my sendmail.mc
 Is there any thing wrong?

you didn't answer the domain questions properly ... and supported
virtual hosts

- it'd be easier to just inatall the generic sendmail-8.13.1 
  ( 2 versions newer(better) than the one you're using  )

- use generic-linux.mc and generic-linux.cf instead of trying ot make oyur
  own *.mc files

- if you wanna play with *.mc files and add rbls...
linux-sec.net/Mail/Sendmail

you will most likely also need to tweek additional sendmail files
virtusertable, access, localhosts, etc
( see the above url for example files )

than more sendmail/mail/mutt commands to test that it works

than check for open relays etc ...

than harden the mta
c ya
alvin
 
 
 divert(-1)dnl
 #-
 
 # $Sendmail: debproto.mc,v 8.12.11 2004-04-22 15:43:34 cowboy Exp $
 #
 # Copyright (c) 1998-2003 Richard Nelson.  All Rights Reserved.
 #


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: problem installing Sendmail

2004-08-14 Thread listcomm

 It is available.  Fire up one of the installers, turn off what you
 don't want, turn on what you do, then let 'er rip.  You may need to be
 in something like Custom Install Mode or something to get this, but
 that's just to save newbie butts.  You can do what you want to.

I thought about that, but, (1) since exim is already installed as an
MTA, I was dubious about installing *another* one, *whether or not*
I would have to uninstall exim.  Knowing no more than I do, I would
suspect that I might end up in more trouble, and end up spending more
time that way, than I would by just learning about exim, (2) I notice
that sendmail is a virtual link to the exim executable - which
causes
me to further suspect possible miscegenation between sendmail support
facilities (possibly even in the kernel) and exim support facilities
- which then causes further paranoia per (1).  (I have many, many burn
scars...  some of them in unmentionable places...), (3) if, and not
when,
the MTA I'm using blows up and embeds shrapnel and rice grains in my
butt,
the most important thing will be, for which MTA I can get some support
- which is determined by the multivariable trendiness index of the
product...
 
  Reason?: THE STUFF IS FREE.  If I were paying for it, I'd feel free to
 
 Very true, but it is your box.  I imagine the sendmail package
 maintainer needs love just like the others.  :-)  Then again, maybe
 not.  He may just be doing it so he doesn't have to run exim or
 postfix; I don't know.

Hey, his pet may come back into vogue again, you never know.  These
things
change with the breeze...

of course, some things are like tattoos - if you've got one,
you better *hope* to hell they don't go seriously out of style

(interesting, though - is there some internecine
warfare going on between alternately trendy MTA package developers?
*That* would be fun to watch...  from a healthy distance...)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: problem installing Sendmail

2004-08-14 Thread Richard A Nelson

hehe...  I think I'll step aside and watch this one :)

But, for the record, I'd like to point out that I missed the 1st post
of this - dug around and found it...  I replied directly to the
originator and as of yet had heard nothing.

We now return control of your flamefest to you (Outer Limits, anyone) ?

-- 
Rick Nelson
Well, since MS cant be sure of the username of someone downloading
things, they are going to play it safe and have everything dowloaded
and executed by Explorer as suid root. That way, it will run on ANY
system anywhere. :)
-- George Bonser [EMAIL PROTECTED]


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: problem installing Sendmail

2004-08-14 Thread s. keeling
Incoming from [EMAIL PROTECTED]:
 
  It is available.  Fire up one of the installers, turn off what you
  don't want, turn on what you do, then let 'er rip.  You may need to be
  in something like Custom Install Mode or something to get this, but
 
 I thought about that, but, (1) since exim is already installed as an
 MTA, I was dubious about installing *another* one, *whether or not*
 I would have to uninstall exim.  Knowing no more than I do, I would

Nah.  Debian's real sane that way.  If you install exim, it first
uninstalls your other MTA.

btw, apt-cache search exim mentions exim-doc.  Highly recommended.

 that sendmail is a virtual link to the exim executable - which
 causes

That's just because sendmail is so well embedded into the history of
Unix, to compete any challenger has to emulate the sendmail interface.

 of course, some things are like tattoos - if you've got one,
 you better *hope* to hell they don't go seriously out of style

Or, you learn to dance, and roll with the punches.  :-)

 (interesting, though - is there some internecine
 warfare going on between alternately trendy MTA package developers?

The postfix guys think they know something us exim guys don't know.
The exim guys think the postfix guys need to read better
documentation.  The sendmail guys stand off in the shadows thinking,
Can you believe these guys?!?

 :-)


-- 
Any technology distinguishable from magic is insufficiently advanced.
(*)   http://www.spots.ab.ca/~keeling 
- -


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: problem installing Sendmail

2004-08-14 Thread John Summerfield
Carlos Sousa wrote:
On Fri, 13 Aug 2004 11:18:54 +0100 Thomas Adam wrote:
 

On Fri, Aug 13, 2004 at 06:15:35PM +0800, Shu Hung (Koala) wrote:
   

-BEGIN PGP SIGNED MESSAGE-
And I don't know how to config Sendmail in Debian, too.
 

Let's see now you went against the grain as it were, and
   

You mean, the OP decided for himself which MTA to use, instead
of just accepting whatever MTA the current Debian Cabal chooses
to shove down his throat?
 

If I didn't know one from another I'd assume those choosing the base 
installation knew what they were doing.

However, since I had a _Bad  Experience_ with Exim some time ago with it 
deleting my mail, I know that in this case they didn't. I did try 
sendmail on woody, but discovered it's brken, and having heard good 
reports of Postfix, I tried that and that's what I use now.

 

installed Sendmail, which you don't know, raher than using Exim?
Interesting... any reason for this?
   

How about:
1. The OP doesn't know Exim just as he doesn't know Sendmail.
  If he's going to learn the one, why not the other;
 

_I_'d have started with the default.
2. The OP wants a well-known MTA, in widest use, actively
  developed despite its very long existence, with the best
  probability of finding support when needed;
3. The OP wants an MTA that is easy to configure for the
  simplest cases, and that is possible to configure for
  whatever convoluted setups you may drop it into;
 

He sure got that one wrong:-)

--
Cheers
John
-- spambait
[EMAIL PROTECTED]  [EMAIL PROTECTED]
Tourist pics http://portgeographe.environmentaldisasters.cds.merseine.nu/
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: problem installing Sendmail

2004-08-14 Thread Carlos Sousa
On Sat, 14 Aug 2004 17:15:23 +0800 John Summerfield wrote:

(replying manually to the list, as I suspect [EMAIL PROTECTED]
won't be a good recipient for my purposes ;)

 I did try 
 sendmail on woody, but discovered it's brken, and having heard good 
 reports of Postfix, I tried that and that's what I use now.

Good for you. But, just, for the record, I've been using sendmail
since Debian Potato, and I haven't the faintest idea what breakage
you're talking about. In all these years my sendmail has been
performing securely and flawlessly.

-- 
Carlos Sousa
http://vbc.dyndns.org/


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: problem installing Sendmail

2004-08-14 Thread Carlos Sousa
On Fri, 13 Aug 2004 23:23:57 -0700 [EMAIL PROTECTED] wrote:

On Fri, 13 Aug 2004 23:52:17 -0600 s. keeling wrote:
  Very true, but it is your box.  I imagine the sendmail package
  maintainer needs love just like the others.  :-)  Then again, maybe
  not.  He may just be doing it so he doesn't have to run exim or
  postfix; I don't know.

I don't know his reasons, but his package is one of the best maintained
ones in the archives. He is very approachable, he acknowledges bugs very
quickly and acts on them asap (the sendmail package in unstable has
been updated 6 times this week). Talk about support...

 Hey, his pet may come back into vogue again, you never know.  These
 things change with the breeze...

What do you mean, may come back ... again? I believe sendmail is still
the most widely used MTA on the Internet. It's never gone away.

-- 
Carlos Sousa
http://vbc.dyndns.org/


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



problem installing Sendmail

2004-08-13 Thread Shu Hung (Koala)
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

I installed a Sendmail to my Debian with apt-get install
After a little bit setup (may be sth. went wrong here), I tried to
send mail with mutt. It failed with a message with Host Unknown (Name
server: none: host not found).

My Debian is connected to a LAN with a NAT router. I don't know it too
well.
And I don't know how to config Sendmail in Debian, too.

Any suggestion?
Thank you all 
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.5 (MingW32)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org

iD8DBQFBHJTG4uyclScWNtARAhq6AKCXM4PueoL1aeHP9rAouGfHiEvxswCeJQhw
cOdIGc1sA8VXjXQSJ60Vv4M=
=iA0F
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: problem installing Sendmail

2004-08-13 Thread Thomas Adam
On Fri, Aug 13, 2004 at 06:15:35PM +0800, Shu Hung (Koala) wrote:
 -BEGIN PGP SIGNED MESSAGE-
 And I don't know how to config Sendmail in Debian, too.

Let's see now you went against the grain as it were, and
installed Sendmail, which you don't know, raher than using Exim?
Interesting... any reason for this?

-- Thomas Adam
--
Frankly, Mr. Shankly, since you ask. You are a flatulent pain in 
the arse. -- Morrissey.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: problem installing Sendmail

2004-08-13 Thread Carlos Sousa
On Fri, 13 Aug 2004 11:18:54 +0100 Thomas Adam wrote:
 On Fri, Aug 13, 2004 at 06:15:35PM +0800, Shu Hung (Koala) wrote:
  -BEGIN PGP SIGNED MESSAGE-
  And I don't know how to config Sendmail in Debian, too.
 
 Let's see now you went against the grain as it were, and

You mean, the OP decided for himself which MTA to use, instead
of just accepting whatever MTA the current Debian Cabal chooses
to shove down his throat?

 installed Sendmail, which you don't know, raher than using Exim?
 Interesting... any reason for this?

How about:
1. The OP doesn't know Exim just as he doesn't know Sendmail.
   If he's going to learn the one, why not the other;
2. The OP wants a well-known MTA, in widest use, actively
   developed despite its very long existence, with the best
   probability of finding support when needed;
3. The OP wants an MTA that is easy to configure for the
   simplest cases, and that is possible to configure for
   whatever convoluted setups you may drop it into;

I may have forgotten a few dozen reasons...

-- 
Carlos Sousa
http://vbc.dyndns.org/


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: problem installing Sendmail

2004-08-13 Thread Thomas Adam
On Sat, Aug 14, 2004 at 01:39:23AM +0100, Carlos Sousa wrote:
 You mean, the OP decided for himself which MTA to use, instead
 of just accepting whatever MTA the current Debian Cabal chooses
 to shove down his throat?

Oh, absolutely. Choice is everything, but would you really install
an MTA you knew nothing about? I certainly wouldn't want to start
learning sendmail. A good middle ground would be postfix.

[..snip..]

-- Thomas Adam
--
Frankly, Mr. Shankly, since you ask. You are a flatulent pain in 
the arse. -- Morrissey.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: problem installing Sendmail

2004-08-13 Thread Carlos Sousa
On Fri, 13 Aug 2004 18:15:35 +0800 Shu Hung (Koala) wrote:
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1

Please try and supply the most information possible. After
reading your mail I still haven't a clue where you're coming from.

 I installed a Sendmail to my Debian with apt-get install
 After a little bit setup (may be sth. went wrong here), I tried to

The sendmail package asks you a few questions upon installation, so
as to configure it properly for your machine. Don't you remember
answering them? You really should take software installation a lot
less lightly...

 send mail with mutt. It failed with a message with Host Unknown (Name
 server: none: host not found).

The Name server bit seems to indicate a hostname/ip resolving problem.
Can you browse the web from that machine?
Did you have an MTA previously, and could you send mail then?
Can you ping outside hosts?

 My Debian is connected to a LAN with a NAT router. I don't know it too
 well.
 And I don't know how to config Sendmail in Debian, too.

It may be the case that you have to get information from the
network admin in order to get your sendmail to route mail properly
for your network environment.

-- 
Carlos Sousa
http://vbc.dyndns.org/


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: problem installing Sendmail

2004-08-13 Thread listcomm

On Sat, 14 Aug 2004 01:44:04 +0100, Thomas Adam
[EMAIL PROTECTED] said:
 On Sat, Aug 14, 2004 at 01:39:23AM +0100, Carlos Sousa wrote:
  You mean, the OP decided for himself which MTA to use, instead
  of just accepting whatever MTA the current Debian Cabal chooses
  to shove down his throat?
 
 Oh, absolutely. Choice is everything, but would you really install
 an MTA you knew nothing about? I certainly wouldn't want to start
 learning sendmail. A good middle ground would be postfix.

Well, I'd already learned to use sendmail, so I was sort of expecting
that the Debian install would make it available, but it installed exim
by default - so, having deduced that that was what was Preferred (or,
in more colorful terms, shoved down my throat by whatever cabal controls
whatever OS with which I'm currently having to negotiate), I've started
learning to cope with it.  If the Cabal (I think cadre is probably
more appropriate for software people in general) changes its collective
mind with a subsequent release (which would not surprise me one iota),
I'll Go Along To Get Along.

Reason?: THE STUFF IS FREE.  If I were paying for it, I'd feel free to
drive whoever created it to collective suicide if they didn't give me
what I want.  But I want support, and if it's FREE, it's damned well
up to whoever created whatever it is, to decide what it looks like, and
what they'll support.

Or am I missing something here...


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: problem installing Sendmail

2004-08-13 Thread s. keeling
Incoming from [EMAIL PROTECTED]:
 
 Well, I'd already learned to use sendmail, so I was sort of expecting
 that the Debian install would make it available, but it installed exim

It is available.  Fire up one of the installers, turn off what you
don't want, turn on what you do, then let 'er rip.  You may need to be
in something like Custom Install Mode or something to get this, but
that's just to save newbie butts.  You can do what you want to.

 Reason?: THE STUFF IS FREE.  If I were paying for it, I'd feel free to

Very true, but it is your box.  I imagine the sendmail package
maintainer needs love just like the others.  :-)  Then again, maybe
not.  He may just be doing it so he doesn't have to run exim or
postfix; I don't know.


-- 
Any technology distinguishable from magic is insufficiently advanced.
(*)   http://www.spots.ab.ca/~keeling 
- -


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Problem mit sendmail unter unstable

2003-08-14 Thread Robert Einsle
Hy *

ich habe das Problem, dass auf meiner Debian unstable sendmail nicht 
mehr sauber laeuft.

ich bekomme fehlermeldungen wie:

--- cut ---
Aug 11 09:21:35 cloud sendmail[8997]: h7B7LZ0b008997: SYSERR(root): 
Cannot open
hash database /etc/mail/virtusertable.db: Invalid argument
--- cut ---

Nach einer Recherche im Internet bin ich drauf gestossen, dies koennte 
mit einer Versionsinkompatibilitaet der libdb-versionen zwischen makemap 
und sendmail zustandekommen.

wenn ich einen strings auf makemap und sendmail mache, bekomme ich bei 
makemap eine libdb4, bei sendmail eine libdb3

Was tun??

Danke euch

\Robert

--
Haeufig gestellte Fragen und Antworten (FAQ): 
http://www.de.debian.org/debian-user-german-FAQ/

Zum AUSTRAGEN schicken Sie eine Mail an [EMAIL PROTECTED]
mit dem Subject unsubscribe. Probleme? Mail an [EMAIL PROTECTED] (engl)


Problem with sendmail 8.12.3-5 and ldap

2003-03-10 Thread Christoph Barbian
Hi all.

I am using ldap as user database on my system (openldap + nss-ldap +
pam-ldap).
After upgrading sendmail from 8.12.3-4 to -5 sendmail ignores all
accounts coming from ldap (but ldap accounts are present in the system,
so I can log in etc).
Accounts from the system database (/etc/passwd) still work fine as the
following transcript shows:

220 fs.math.uni-sb.de ESMTP Sendmail 8.12.3/8.12.3/Debian-5; Mon, 10 Mar
2003 10
:42:11 +0100; (No UCE/UBE) logging access from:
fs.math.uni-sb.de(OK)[EMAIL PROTECTED]
th.uni-sb.de [134.96.99.112]
ehlo localhost
250-fs.math.uni-sb.de Hello [EMAIL PROTECTED] [134.96.99.112],
pleased to meet you
250-ENHANCEDSTATUSCODES
250-PIPELINING
250-EXPN
250-VERB
250-8BITMIME
250-SIZE
250-DSN
250-ETRN
250-AUTH DIGEST-MD5 CRAM-MD5 PLAIN LOGIN
250-DELIVERBY
250 HELP
mail from: [EMAIL PROTECTED]
250 2.1.0 [EMAIL PROTECTED] Sender ok
rcpt to: [EMAIL PROTECTED]
550 5.1.1 [EMAIL PROTECTED] User unknown
rcpt to: [EMAIL PROTECTED]
250 2.1.5 [EMAIL PROTECTED] Recipient ok

Here cb is an ldap account.

In my opinion there should not be any difference visible to sendmail
between ldap and local accounts through the name switch.
I am not using any ldap features of sendmail (as ldap maps or ldap
routing) and I did not change anything about any configuration files.

Thanks in advance

  Christoph

If needed, here is my sendmail.mc


divert(0)dnl
#
#   Copyright (c) 1998-2002 Richard Nelson.  All Rights Reserved.
#
#  This file is used to configure Sendmail for use with Debian systems.
#
define(`_USE_ETC_MAIL_')dnl
include(`/usr/share/sendmail/cf/m4/cf.m4')dnl
VERSIONID(`$Id: sendmail.mc, v 8.12.3-4 2002-04-17 00:37:57 cowboy Exp $')
OSTYPE(`debian')dnl
DOMAIN(`debian-mta')dnl
dnl #
dnl # General defines
dnl #
dnl # SAFE_FILE_ENV: [undefined] If set, sendmail will do a chroot()
dnl #   into this directory before writing files.
dnl #   If *all* your user accounts are under /home then use that
dnl #   instead - it will prevent any writes outside of /home !
dnl #   define(`confSAFE_FILE_ENV', `')dnl
LOCAL_CONFIG
FEATURE(`masquerade_envelope')dnl
LOCAL_CONFIG
Cwfs.math.uni-sb.de
FEATURE(`use_cw_file')dnl
FEATURE(`use_ct_file')dnl
FEATURE(`mailertable')dnl
define(`confME_TOO', True)dnl
dnl #
dnl # Dialup/LAN connection overrides
dnl #
include(`/etc/mail/dialup.m4')dnl
include(`/etc/mail/provider.m4')dnl
dnl #
MAILER_DEFINITIONS
MAILER(local)dnl
MAILER(smtp)dnl
LOCAL_CONFIG
## Custom configurations below (will be preserved)
define(`ALIAS_FILE',`/etc/mail/aliases,/etc/mail/aliases.misc,/etc/mail/aliases.sympa,/etc/mail/aliases.lists')dnl



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Problem mit Sendmail / SMMSP GID

2002-06-26 Thread Henrik Hasenkamp

hi,

ich erhalte diese email alle 10 minuten. 


From: root@server1 (Cron Daemon)
To: root@server1
Subject: Cron smmsp@server1 test -x /usr/share/sendmail/sendmail  
/usr/share/sendmail/sendmail cron-msp
Date: Wed, 26 Jun 2002 09:30:02 +0200

WARNING: RunAsGid for MSP ignored, check group ids (egid=103, want=102)



kann mir einer sagen wie ich dem smmsp mal verklickern kann DAS ER BEREITS DIE GID 102 
hat  weil irgendwie ist das nervig wenn ich am tag dann 156 emails erhalte, in 
dennen nur die Uhrzeit aktualisiert wurde. :) 


lieben gruss und THX 4 HELP

henrik


-- 
Zum AUSTRAGEN schicken Sie eine Mail an [EMAIL PROTECTED]
mit dem Subject unsubscribe. Probleme? Mail an [EMAIL PROTECTED] (engl)




Problem with sendmail

2002-01-17 Thread HawkY

Hi!

I've got a problem with my sendmail. It does not send mails through my 
dial-up connections but does deliver my local mail.

In /var/log/mail/mail.info I've found something I don't understand:

Jan 16 17:44:31 debian sendmail[331]: XAA01148: [EMAIL PROTECTED], 
ctladdr=hawky
(1000/1000), delay=18:32:37, xdelay=00:00:00, mailer=relay, 
relay=fmx1.freemail.hu.,

stat=Deferred: Name server: fmx1.freemail.hu.: host name lookup failure
  ^^^
What is that fmx1 thing? (I found lines with fmx2 and fmx3 in 
mail.info too.)


How can I make sendmail to work?

Thanx, Balazs

Ps.: Debian Woody + The newest (?) sendmail available from the STABLE archives.
Ps2.: I'm not a member of this list so please send your answers to 
[EMAIL PROTECTED] !


Linux is like a wigwam:
No Windows, no Gates and Apache inside!



Re: Problem with sendmail

2002-01-17 Thread nate
quote who=HawkY
 Hi!

 Jan 16 17:44:31 debian sendmail[331]: XAA01148:
 [EMAIL PROTECTED],  ctladdr=hawky
 (1000/1000), delay=18:32:37, xdelay=00:00:00, mailer=relay,
 relay=fmx1.freemail.hu.,
 stat=Deferred: Name server: fmx1.freemail.hu.: host name lookup
 failure
   ^^^
 What is that fmx1 thing? (I found lines with fmx2 and fmx3 in
  mail.info too.)

this is one of the mail exchangers for freemail.hu from my
DNS query it has several:

freemail.hu preference = 30, mail exchanger = fmx3.freemail.hu
freemail.hu preference = 30, mail exchanger = fmx4.freemail.hu
freemail.hu preference = 10, mail exchanger = fmx.freemail.hu
freemail.hu preference = 30, mail exchanger = fmx1.freemail.hu
freemail.hu preference = 30, mail exchanger = fmx2.freemail.hu



 How can I make sendmail to work?

appears your system is unable to resolve the address
of the mail exchanger. check your /etc/resolv.conf
and use nslookup to check to see if you can resolve it
outside of sendmail.

if your using a dialup i reccomend configuring sendmail
to use a smarthost, and relay through your isp's mail
server.

when configuring sendmail ('sendmailconfig') be sure to
enable DNS (default), i turn off assume best MX is local,

nate






Re: problem with sendmail in sid

2001-04-27 Thread Martin Maciaszek
The problem was even more subtle that I thought. Somehow I
misspelled my hostname in GENERICS_DOMAIN. After that my old
genricstable started working again :))

Thanks for the help and sorry for the false alarm.

Yet another problem is still unsolved. I want my sendmail to do
smtp-auth to my smarthost (gmx.net). I read the documentation on
sendmail.org but somehow I seem to have missed something. Here's
a snipplet from my sendmail.mc:
[...]
TRUST_AUTH_MECH(`PLAIN')dnl
define(`confAUTH_MECHANISMS',`PLAIN')dnl
define(`confDEF_AUTH_INFO',`/etc/mail/default-auth-info')dnl
[...]

my /etc/mail/default-auth-info contains the following lines:
myusername
myusername
mypassword
mail.gmx.net

This somehow doesn't work. Can anyone give me some hints? or
maybe a samples of a working configurations (without the
passwords)

Cheers
Martin
-- 
hundred-and-one symptoms of being an internet addict:
51. You put a pillow case over your laptop so your lover doesn't see it while
you are pretending to catch your breath.


pgpn4CTDzhtTY.pgp
Description: PGP signature


problem with sendmail in sid

2001-04-26 Thread Martin Maciaszek
I'm trying to use gmx as my smarthost. For this to work I have to rewrite my 
sender address. I want to use a combination of masqurading + genericstable (I'm 
not quite sure if I really need masquerading for this).
Here is a short description of my set up:
my hostname: nexus.shadowrun.not
my login: fastjack
desired sender address: [EMAIL PROTECTED] 

I added the following lines to my sendmail.mc:
[...]
dnl masquerading options
GENERICS_DOMAIN(`nexus.shadowrun.not')dnl
MASQUERADE_AS(`gmx.net')dnl
FEATURE(`masquerade_entire_domain')dnl
FEATURE(`masquerade_envelope')dnl
dnl genericstable options
FEATURE(`genericstable',`hash -o /etc/mail/genericstable')dnl
[...]

my /etc/mail/genericstable contains the following line:
fastjack[EMAIL PROTECTED] 

When I start a queue run sendmail tries to deliver the mails to my smarthost 
with [EMAIL PROTECTED] as the sender. What is wrong here? It used to work 
before.

Cheers
Martin




Re: problem with sendmail in sid

2001-04-26 Thread Martin Maciaszek
On Thu, Apr 26, 2001 at 10:43:09AM -0400, Richard A Nelson wrote:

 Please show me the output of
 sendmail -bt
 $j
 /tryflags HS
 /try smtp fastjack
 /try smtp fastjack@whatever $j returned

Ok, here it is:
nexus:~# sendmail -bt
ADDRESS TEST MODE (ruleset 3 NOT automatically invoked)
Enter ruleset address
 $j
nexus.shadowrun.not
 /tryflags HS
 /try smtp fastjack
Trying header sender address fastjack for mailer smtp
canonify   input: fastjack
Canonify2  input: fastjack
Canonify2returns: fastjack
canonify returns: fastjack
1  input: fastjack
1returns: fastjack
HdrFromSMTPinput: fastjack
PseudoToReal   input: fastjack
PseudoToReal returns: fastjack
MasqSMTP   input: fastjack
MasqSMTP returns: fastjack  @ *LOCAL* 
MasqHdrinput: fastjack  @ *LOCAL* 
canonify   input: mmaciaszek @ gmx . net
Canonify2  input: mmaciaszek  @ gmx . net 
Canonify2returns: mmaciaszek  @ gmx . net . 
canonify returns: mmaciaszek  @ gmx . net . 
MasqHdr  returns: mmaciaszek  @ gmx . net . 
HdrFromSMTP  returns: mmaciaszek  @ gmx . net . 
final  input: mmaciaszek  @ gmx . net . 
finalreturns: mmaciaszek @ gmx . net
Rcode = 0, addr = [EMAIL PROTECTED]
 /try smtp [EMAIL PROTECTED]
Trying header sender address [EMAIL PROTECTED] for mailer smtp
canonify   input: fastjack @ nexus . shadowrun . not
Canonify2  input: fastjack  @ nexus . shadowrun . not 
Canonify2returns: fastjack  @ nexus . shadowrun . not . 
canonify returns: fastjack  @ nexus . shadowrun . not . 
1  input: fastjack  @ nexus . shadowrun . not . 
1returns: fastjack  @ nexus . shadowrun . not . 
HdrFromSMTPinput: fastjack  @ nexus . shadowrun . not . 
PseudoToReal   input: fastjack  @ nexus . shadowrun . not . 
PseudoToReal returns: fastjack  @ nexus . shadowrun . not . 
MasqSMTP   input: fastjack  @ nexus . shadowrun . not . 
MasqSMTP returns: fastjack  @ nexus . shadowrun . not . 
MasqHdrinput: fastjack  @ nexus . shadowrun . not . 
MasqHdr  returns: fastjack  @ gmx . net . 
HdrFromSMTP  returns: fastjack  @ gmx . net . 
final  input: fastjack  @ gmx . net . 
finalreturns: fastjack @ gmx . net
Rcode = 0, addr = [EMAIL PROTECTED]


I hope you can make some sense out of it.

Cheers
Martin



problem with sendmail.

2000-04-28 Thread Curtis Hogg
I am getting the following error whenever i try to use fetchmail to get my
pop3 mail. this wasn't a problem before...

Apr 27 21:43:44 ayanami-rei sendmail[1969]: e3S3hiv01969: SYSERR(root):
Can't create transcript file ./xfe3S3hiv01969: Permission denied

I know that it's a permissions problem (obviously) but i'm not sure where
i need to change permissions to fix this problem. Any help would be
appreciated

Your recently-posting newbie, =)
-- Curtis Hogg

Email 1 - [EMAIL PROTECTED]
Email 2 - [EMAIL PROTECTED]
WWW - http://www.cyberhighway.net/~buckmins
--

Q:  Why haven't you graduated yet?
A:  Well, Dad, I could have finished years ago, but I wanted
my dissertation to rhyme.
--





Problem with sendmail

2000-03-01 Thread Roy Jr



I need to configure the e-mail for receive e-mail 
under the domain. Ex my e-mail is [EMAIL PROTECTED] and i need to 
receive also under [EMAIL PROTECTED] . How can 
i do that?

Please answer to [EMAIL PROTECTED]

Thanks


Re: problem in sendmail

1999-10-06 Thread Mark Brown
On Tue, Oct 05, 1999 at 06:52:34PM +0100, Rajesh Mittal wrote:

 Oct  5 15:09:09 scud sendmail[24598]: PAA24598: ruleset=check_mail, 
 arg1=[EMAIL PROTECTED],
 relay=localhost [127.0.0.1], reject=501 [EMAIL PROTECTED]... Sender 
 domain must exist

Your mail is tripping over your anti-spam rules - in this case, one of
the check_mail hacks which tests the validity of the originating e-mail
address.  Remove that from your m4 configuration and rebuild sendmail.cf
and at least that problem should go away.  When doing this you should make
sure that you don't disable the anti-spam features (particularly not the
anti-relay one).

For a DNSless box you probably want to use a MTA other than sendmail -
it is quite DNS-happy at the best of times.  At least Exim and Postfix
can be configured to operate completely without DNS, possibly others can
too.

-- 
Mark Brown  mailto:[EMAIL PROTECTED]   (Trying to avoid grumpiness)
http://www.tardis.ed.ac.uk/~broonie/
EUFShttp://www.eusa.ed.ac.uk/societies/filmsoc/


pgp5JSHiEhFma.pgp
Description: PGP signature


problem in sendmail

1999-10-05 Thread Rajesh Mittal

Hi

 I have just configured the sendmail8.9.3  on debian.
 My hostname is scud . I have not configured the dns .
 as one of my critical network project is going on that.
 so I can't configure dns. I want sendmail to get running without using dns.

 I am getting this errors.
=
Oct  5 15:13:09 scud sendmail[24628]: NOQUEUE: Null connection from 
localhost [127.0.0.1]
Oct  5 15:15:09 scud sendmail[24637]: NOQUEUE: Null connection from 
localhost [127.0.0.1]
Oct  5 15:17:09 scud sendmail[24639]: NOQUEUE: Null connection from 
localhost [127.0.0.1]
Oct  5 15:19:09 scud sendmail[24644]: NOQUEUE: Null connection from 
localhost [127.0.0.1]
Oct  5 15:21:09 scud sendmail[24645]: NOQUEUE: Null connection from 
localhost [127.0.0.1]
Oct  5 15:23:09 scud sendmail[24649]: NOQUEUE: Null connection from 
localhost [127.0.0.1]
Oct  5 15:25:09 scud sendmail[24664]: NOQUEUE: Null connection from 
localhost [127.0.0.1]
Oct  5 15:27:09 scud sendmail[24674]: NOQUEUE: Null connection from 
localhost [127.0.0.1]
Oct  5 15:29:09 scud sendmail[24677]: NOQUEUE: Null connection from 
localhost [127.0.0.1]

==


I am not able to make it out where I am getting wrong.
and  when I send a mail to  an email address from any email address , It 
gives me following errors.


==
Oct  5 15:08:02 scud sendmail[24570]: starting daemon (8.9.3): 
[EMAIL PROTECTED]:00:00
Oct  5 15:09:09 scud sendmail[24598]: PAA24598: ruleset=check_mail, 
arg1=[EMAIL PROTECTED],
relay=localhost [127.0.0.1], reject=501 [EMAIL PROTECTED]... Sender 
domain must exist
Oct  5 15:09:09 scud sendmail[24598]: PAA24598: 
from=[EMAIL PROTECTED], size=0, class=0, pri=0,

nrcpts=0, proto=SMTP, relay=localhost [127.0.0.1]
==



Please email back to me with your suggestions.

Thanks

Rajesh Mittal

This is Linux Country. On a quiet night, you can hear Windows NT reboot!
Do you remember how to -think- ? Do you remember how to experiment?
Linux is an operating system that brings back the fun and adventure in 
computing.


Rajesh Mittal, E-mail: [EMAIL PROTECTED]
Tel: +44 (0)1628 580600 direct no - +44 (0)1628 580623
Fax:+44 (0)1628 580610 Resi  no - +44 (0)1628 778481
InfoGain Limited, 1 Bell St, Maidenhead, Berkshire, SL6 1BU. U.K.
URL: www.infogain.com



problem with sendmail

1999-02-20 Thread Michael Meskes
I've set up my sendmail daemon to just forward my mail to my provider's
smart relay host mail.online-club.de. It worked pretty well until earlier
this week. All of a sudden though I get messages like

Deferred: 451 [EMAIL PROTECTED]... Deferred by rule.

Obviously no mail goes out. I checked the relay host and sendmail tries to
deliver to post.strato.de. I never even heard about that domain. I just
talked to my provider (since this could have been a name server problem) and
they told me that strato is not their upstream provider. However, it is a
provider too. So all of a sudden my system tries to deliver mail through the
wrong companies smtp host. 

Does anyone have an idea how this could happen? No, I did not change any
software or configuration in between.

Thanks a lot in advance for any idea.

Michael

P.S.: Please CC me on replies.
-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]  | Use PostgreSQL!