<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 TRANSITIONAL//EN">
<HTML>
<HEAD>
  <META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=UTF-8">
  <META NAME="GENERATOR" CONTENT="GtkHTML/3.6.2">
</HEAD>
<BODY>
Still get same error<BR>
<BR>
here is what shows up in jabber<BR>
<BR>
[01:40:20 PM] *** jabbermail is Online [forwarding email]<BR>
[01:40:20 PM] *** jabbermail is Offline<BR>
<BR>
Don't know if that helps<BR>
<BR>
On Thu, 2005-12-15 at 22:37 +0200, Norman Rasmussen wrote:
<BLOCKQUOTE TYPE=CITE>
<PRE>
<FONT COLOR="#000000">odd, with that error I wouldn't expect it to be sending the jabber messages.</FONT>

<FONT COLOR="#000000">try adding:</FONT>

<FONT COLOR="#000000">    my $jabmsg = Net::Jabber::Message-&gt;new();</FONT>

<FONT COLOR="#000000">just before:</FONT>

<FONT COLOR="#000000">    # Compose the message</FONT>

<FONT COLOR="#000000">On 12/15/05, Jon Scottorn &lt;<A HREF="mailto:jscottorn@possibilityforge.com">jscottorn@possibilityforge.com</A>&gt; wrote:</FONT>
<FONT COLOR="#000000">&gt;            Ok, disregard all my previous emails, I have got it sending to jabber now but there is something else wrong now that I have no clue how to fix.  I send the message and it sends to my jabber client saying [forwarding message] and that's it.  I also get a reply back in my email with this error.</FONT>
<FONT COLOR="#000000">&gt;</FONT>
<FONT COLOR="#000000">&gt;  Can't call method &quot;SetMessage&quot; on an undefined value at smtp2jabber.pl line 42, &lt;STDIN&gt; line 1.</FONT>
<FONT COLOR="#000000">&gt;  554 5.3.0 unknown mailer error 255</FONT>
<FONT COLOR="#000000">&gt;</FONT>
<FONT COLOR="#000000">&gt;  Anyone know what that is.</FONT>
<FONT COLOR="#000000">&gt;</FONT>
<FONT COLOR="#000000">&gt;  I am sending my email message as plain text with no attachments.</FONT>
<FONT COLOR="#000000">&gt;</FONT>
<FONT COLOR="#000000">&gt;  Thanks,</FONT>
<FONT COLOR="#000000">&gt;</FONT>
<FONT COLOR="#000000">&gt;  Jon</FONT>
<FONT COLOR="#000000">&gt;</FONT>
<FONT COLOR="#000000">&gt;  On Thu, 2005-12-15 at 06:22 -0500, Bart Smit wrote:</FONT>
<FONT COLOR="#000000">&gt;</FONT>
<FONT COLOR="#000000">&gt;  Assuming that on the jabber server your MTA is sendmail you can do this:</FONT>
<FONT COLOR="#000000">&gt;</FONT>
<FONT COLOR="#000000">&gt; Edit your sendmail.cf to listen for external connections:</FONT>
<FONT COLOR="#000000">&gt; dnl #  DAEMON_OPTIONS(`Port=smtp,Addr=127.0.0.1, Name=MTA')dnl</FONT>
<FONT COLOR="#000000">&gt;</FONT>
<FONT COLOR="#000000">&gt; Set a catch all for the server or domain in /etc/mail/virtusertable:</FONT>
<FONT COLOR="#000000">&gt; @your.jabber.org                mailerscript</FONT>
<FONT COLOR="#000000">&gt;</FONT>
<FONT COLOR="#000000">&gt; Add an alias for the script in /etc/aliases (don't forget to run</FONT>
<FONT COLOR="#000000">&gt; newaliases as root):</FONT>
<FONT COLOR="#000000">&gt; mailerscript        |smtp2jabber.pl</FONT>
<FONT COLOR="#000000">&gt;</FONT>
<FONT COLOR="#000000">&gt; Manually register a bot user on your jabber server and set the user/pass</FONT>
<FONT COLOR="#000000">&gt; to mailer/password (if you use other credentials, edit the script</FONT>
<FONT COLOR="#000000">&gt; accordingly).</FONT>
<FONT COLOR="#000000">&gt; Save the attached script as smtp2jabber.pl and place it in /etc/smrsh or</FONT>
<FONT COLOR="#000000">&gt; link it from there. Remember to chmod it to be world executable.</FONT>
<FONT COLOR="#000000">&gt;</FONT>
<FONT COLOR="#000000">&gt; Use cpan or your favourite package manager to install the perl modules</FONT>
<FONT COLOR="#000000">&gt; at the top of the script. Restart sendmail and test.</FONT>
<FONT COLOR="#000000">&gt;</FONT>
<FONT COLOR="#000000">&gt;</FONT>
<FONT COLOR="#000000">&gt; Bart...</FONT>
<FONT COLOR="#000000">&gt;</FONT>
<FONT COLOR="#000000">&gt;</FONT>
<FONT COLOR="#000000">&gt;</FONT>
<FONT COLOR="#000000">&gt; #!/usr/bin/perl</FONT>
<FONT COLOR="#000000">&gt;</FONT>
<FONT COLOR="#000000">&gt; use strict;</FONT>
<FONT COLOR="#000000">&gt; use Mail::Message;</FONT>
<FONT COLOR="#000000">&gt; use Mail::Message::Field;</FONT>
<FONT COLOR="#000000">&gt; use Mail::Message::Construct::Read;</FONT>
<FONT COLOR="#000000">&gt; use Mail::Message::Attachment::Stripper;</FONT>
<FONT COLOR="#000000">&gt; use Mail::Message::Body;</FONT>
<FONT COLOR="#000000">&gt; use Net::Jabber;</FONT>
<FONT COLOR="#000000">&gt;</FONT>
<FONT COLOR="#000000">&gt; use constant SERVER   =&gt; &quot;your.jabber.org&quot;;</FONT>
<FONT COLOR="#000000">&gt; use constant PORT     =&gt; 5222;</FONT>
<FONT COLOR="#000000">&gt; use constant USERNAME =&gt; &quot;mailer&quot;;</FONT>
<FONT COLOR="#000000">&gt; use constant PASSWORD =&gt; &quot;password&quot;;</FONT>
<FONT COLOR="#000000">&gt; use constant RESOURCE =&gt; &quot;Perl Script&quot;;</FONT>
<FONT COLOR="#000000">&gt;</FONT>
<FONT COLOR="#000000">&gt;</FONT>
<FONT COLOR="#000000">&gt; # The email message come in on STDIN</FONT>
<FONT COLOR="#000000">&gt; my $msg = Mail::Message-&gt;read(\*STDIN);</FONT>
<FONT COLOR="#000000">&gt;</FONT>
<FONT COLOR="#000000">&gt; # Pick out the recipient, subject and sender</FONT>
<FONT COLOR="#000000">&gt; my $rcpt    = $msg-&gt;head-&gt;get('to');</FONT>
<FONT COLOR="#000000">&gt; my $subject = $msg-&gt;head-&gt;get('subject');</FONT>
<FONT COLOR="#000000">&gt; my $sender  = $msg-&gt;head-&gt;get('from');</FONT>
<FONT COLOR="#000000">&gt;</FONT>
<FONT COLOR="#000000">&gt; # Remove the angle brackets</FONT>
<FONT COLOR="#000000">&gt; $rcpt =~ s/^&lt;//;</FONT>
<FONT COLOR="#000000">&gt; $rcpt =~ s/&gt;$//;</FONT>
<FONT COLOR="#000000">&gt; $sender =~ s/^&lt;//;</FONT>
<FONT COLOR="#000000">&gt; $sender =~ s/&gt;$//;</FONT>
<FONT COLOR="#000000">&gt;</FONT>
<FONT COLOR="#000000">&gt; # Remove the attachment(s) from the message</FONT>
<FONT COLOR="#000000">&gt; my $stripper = Mail::Message::Attachment::Stripper-&gt;new($msg);</FONT>
<FONT COLOR="#000000">&gt; my Mail::Message $textonly  = $stripper-&gt;message;</FONT>
<FONT COLOR="#000000">&gt; my $body = $textonly-&gt;body;</FONT>
<FONT COLOR="#000000">&gt;</FONT>
<FONT COLOR="#000000">&gt; # Connect to jabber</FONT>
<FONT COLOR="#000000">&gt; my $jabber = &amp;setup_Jabber(SERVER, PORT, USERNAME, PASSWORD, RESOURCE,</FONT>
<FONT COLOR="#000000">&gt; &quot;normal/forwarding email&quot;);</FONT>
<FONT COLOR="#000000">&gt;</FONT>
<FONT COLOR="#000000">&gt; # Compose the message</FONT>
<FONT COLOR="#000000">&gt; my $jabmsg-&gt;SetMessage(</FONT>
<FONT COLOR="#000000">&gt;               &quot;to&quot;      =&gt; &quot;$rcpt&quot;,</FONT>
<FONT COLOR="#000000">&gt;               &quot;subject&quot; =&gt; &quot;$sender emailed: $subject&quot;,</FONT>
<FONT COLOR="#000000">&gt;               &quot;body&quot;    =&gt; &quot;$body&quot;);</FONT>
<FONT COLOR="#000000">&gt;</FONT>
<FONT COLOR="#000000">&gt; # And send it</FONT>
<FONT COLOR="#000000">&gt; $jabber-&gt;Send($jabmsg);</FONT>
<FONT COLOR="#000000">&gt;</FONT>
<FONT COLOR="#000000">&gt; # Close the connection and exit</FONT>
<FONT COLOR="#000000">&gt; $jabber-&gt;Disconnect();</FONT>
<FONT COLOR="#000000">&gt; exit(0);</FONT>
<FONT COLOR="#000000">&gt;</FONT>
<FONT COLOR="#000000">&gt;</FONT>
<FONT COLOR="#000000">&gt; sub setup_Jabber {</FONT>
<FONT COLOR="#000000">&gt;   my ($server, $port, $user, $pass, $resource, $initial_status) = @_;</FONT>
<FONT COLOR="#000000">&gt;   my $connection = new Net::Jabber::Client;</FONT>
<FONT COLOR="#000000">&gt;</FONT>
<FONT COLOR="#000000">&gt;   # Connect</FONT>
<FONT COLOR="#000000">&gt;   my $status = $connection-&gt;Connect( hostname =&gt; $server,</FONT>
<FONT COLOR="#000000">&gt;                                      port     =&gt; $port );</FONT>
<FONT COLOR="#000000">&gt;   die &quot;Cannot connect to Jabber server $server on port $port\n&quot;</FONT>
<FONT COLOR="#000000">&gt;     unless $status;</FONT>
<FONT COLOR="#000000">&gt;</FONT>
<FONT COLOR="#000000">&gt;   # Callbacks</FONT>
<FONT COLOR="#000000">&gt;   $connection-&gt;SetCallBacks( presence =&gt; \&amp;InPresence );</FONT>
<FONT COLOR="#000000">&gt;</FONT>
<FONT COLOR="#000000">&gt;   # Ident/Auth</FONT>
<FONT COLOR="#000000">&gt;   my @result = $connection-&gt;AuthSend( username =&gt; $user,</FONT>
<FONT COLOR="#000000">&gt;                                       password =&gt; $pass,</FONT>
<FONT COLOR="#000000">&gt;                                       resource =&gt; $resource );</FONT>
<FONT COLOR="#000000">&gt;   die &quot;Ident/Auth failed: $result[0] - $result[1]\n&quot;</FONT>
<FONT COLOR="#000000">&gt;     if $result[0] ne &quot;ok&quot;;</FONT>
<FONT COLOR="#000000">&gt;</FONT>
<FONT COLOR="#000000">&gt;   # Roster</FONT>
<FONT COLOR="#000000">&gt;   $connection-&gt;RosterGet();</FONT>
<FONT COLOR="#000000">&gt;</FONT>
<FONT COLOR="#000000">&gt;   # Set initial presence</FONT>
<FONT COLOR="#000000">&gt;   &amp;set_presence($connection, $initial_status);</FONT>
<FONT COLOR="#000000">&gt;</FONT>
<FONT COLOR="#000000">&gt;   return $connection;</FONT>
<FONT COLOR="#000000">&gt; }</FONT>
<FONT COLOR="#000000">&gt;</FONT>
<FONT COLOR="#000000">&gt; sub InPresence</FONT>
<FONT COLOR="#000000">&gt; {</FONT>
<FONT COLOR="#000000">&gt;   my $presence = $_[1];</FONT>
<FONT COLOR="#000000">&gt;   my $type = $presence-&gt;GetType();</FONT>
<FONT COLOR="#000000">&gt;</FONT>
<FONT COLOR="#000000">&gt;   if ($type eq &quot;subscribe&quot;) {</FONT>
<FONT COLOR="#000000">&gt;     $jabber-&gt;Send($presence-&gt;Reply(type =&gt; 'subscribed'));</FONT>
<FONT COLOR="#000000">&gt;   }</FONT>
<FONT COLOR="#000000">&gt;   elsif ($type eq &quot;unsubscribe&quot;) {</FONT>
<FONT COLOR="#000000">&gt;     $jabber-&gt;Send($presence-&gt;Reply(type =&gt; 'unsubscribed'));</FONT>
<FONT COLOR="#000000">&gt;   }</FONT>
<FONT COLOR="#000000">&gt; }</FONT>
<FONT COLOR="#000000">&gt;</FONT>
<FONT COLOR="#000000">&gt; sub set_presence {</FONT>
<FONT COLOR="#000000">&gt;   my ($connection, $s) = @_;</FONT>
<FONT COLOR="#000000">&gt;   my $presence = Net::Jabber::Presence-&gt;new();</FONT>
<FONT COLOR="#000000">&gt;   my ($show, $status) = split(&quot;/&quot;, $s, 2);</FONT>
<FONT COLOR="#000000">&gt;   $presence-&gt;SetPresence( show   =&gt; $show,</FONT>
<FONT COLOR="#000000">&gt;                           status =&gt; $status );</FONT>
<FONT COLOR="#000000">&gt;   $connection-&gt;Send($presence);</FONT>
<FONT COLOR="#000000">&gt; }</FONT>
<FONT COLOR="#000000">&gt;</FONT>
<FONT COLOR="#000000">&gt; -----Original Message-----</FONT>
<FONT COLOR="#000000">&gt; From: <A HREF="mailto:jdev-bounces@jabber.org">jdev-bounces@jabber.org</A> [mailto:<A HREF="mailto:jdev-bounces@jabber.org">jdev-bounces@jabber.org</A>] On Behalf</FONT>
<FONT COLOR="#000000">&gt; Of Peter Saint-Andre</FONT>
<FONT COLOR="#000000">&gt; Sent: 14 December 2005 23:53</FONT>
<FONT COLOR="#000000">&gt; To: Jabber software development list</FONT>
<FONT COLOR="#000000">&gt; Subject: Re: [jdev] jabberSMTP</FONT>
<FONT COLOR="#000000">&gt;</FONT>
<FONT COLOR="#000000">&gt; Jon Scottorn wrote:</FONT>
<FONT COLOR="#000000">&gt; &gt; Hi all,</FONT>
<FONT COLOR="#000000">&gt; &gt;</FONT>
<FONT COLOR="#000000">&gt; &gt;    I have been trying to locate a jabber smtp transport, does anyone</FONT>
<FONT COLOR="#000000">&gt; &gt; know of any such thing.  I basically need something that will parse an</FONT>
<FONT COLOR="#000000">&gt;</FONT>
<FONT COLOR="#000000">&gt; &gt; email sent to say <A HREF="mailto:jonsmel@jabber.org">jonsmel@jabber.org</A> &lt;mailto:<A HREF="mailto:jonsmel@jabber.org">jonsmel@jabber.org</A>&gt; and</FONT>
<FONT COLOR="#000000">&gt; &gt; reformat it into a xmpp message and send it to the user.  I don't</FONT>
<FONT COLOR="#000000">&gt; &gt; really care about attachments, it will only be text.</FONT>
<FONT COLOR="#000000">&gt; &gt;</FONT>
<FONT COLOR="#000000">&gt; &gt; Does anyone know of this type of item?</FONT>
<FONT COLOR="#000000">&gt;</FONT>
<FONT COLOR="#000000">&gt; The old theoretic-smtp project did something like that, but it</FONT>
<FONT COLOR="#000000">&gt; disappeared after the JabberStudio rootkit. I've sent the code to Jon on</FONT>
<FONT COLOR="#000000">&gt; an as-is basis. If anyone else has code like this (more recent than</FONT>
<FONT COLOR="#000000">&gt; theoretic-smtp), feel free to post to the list. :-)</FONT>
<FONT COLOR="#000000">&gt;</FONT>
<FONT COLOR="#000000">&gt; Peter</FONT>
<FONT COLOR="#000000">&gt;</FONT>
<FONT COLOR="#000000">&gt;</FONT>
<FONT COLOR="#000000">&gt;</FONT>
<FONT COLOR="#000000">&gt;</FONT>
<FONT COLOR="#000000">&gt;   Jon Scottorn</FONT>
<FONT COLOR="#000000">&gt;  Systems Administrator</FONT>
<FONT COLOR="#000000">&gt;  The Possibility Forge, Inc.</FONT>
<FONT COLOR="#000000">&gt;  <A HREF="http://www.possibilityforge.com">http://www.possibilityforge.com</A></FONT>
<FONT COLOR="#000000">&gt;  435.635.0591 x.1004</FONT>



<FONT COLOR="#000000">--</FONT>
<FONT COLOR="#000000">- Norman Rasmussen</FONT>
<FONT COLOR="#000000"> - Email: <A HREF="mailto:norman@rasmussen.co.za">norman@rasmussen.co.za</A></FONT>
<FONT COLOR="#000000"> - Home page: <A HREF="http://norman.rasmussen.co.za/">http://norman.rasmussen.co.za/</A></FONT>
</PRE>
</BLOCKQUOTE>
<TABLE CELLSPACING="0" CELLPADDING="0" WIDTH="100%">
<TR>
<TD>
<B><I><FONT SIZE="4"><FONT COLOR="#000080">Jon Scottorn</FONT></FONT></I></B><BR>
<I><FONT COLOR="#000080">Systems Administrator</FONT></I><BR>
<I><FONT COLOR="#000080">The Possibility Forge, Inc.</FONT></I><BR>
<I><FONT COLOR="#000080">http://www.possibilityforge.com</FONT></I><BR>
<I><FONT COLOR="#000080">435.635.0591 x.1004</FONT></I>
</TD>
</TR>
</TABLE>
</BODY>
</HTML>