search for: incomingmail

Displaying 2 results from an estimated 2 matches for "incomingmail".

Did you mean: incomingmain
2001 Dec 19
0
public key authentication failure
...part from the server log and I don't understand it: debug2: input_userauth_request: try method publickey debug1: test whether pkalg/pkblob are acceptable debug1: temporarily_use_uid: 1005/1005 (e=0) debug1: restore_uid debug2: userauth_pubkey: authenticated 0 pkalg ssh-rsa Failed publickey for incomingmail from cl.ie.nt.ip port 29365 ssh2 Another thing that puzzles me is why does it start asking for s/key authentication? I don't even have opie setup on the server side. I am pretty sure it has something to do with FreeBSD "localisations". Thanks Greg -------------- next part ---------...
2006 Jun 16
0
Polling pop3 and adding emails to ticket system
...trying this code below to poll the pop3 mailbox, which i can do as a standalone .rb file which copies the files to inbox/ but now im trying to do the same for the controller to open the emails and add the content to the ticket system. but all i get is error, can somebody enlighten me? class IncomingMail < ActionMailer::Base def receive(email) @ticket = Ticket.new @ticket.name = email.from[0] @ticket.title = email.subject @ticket.description = email.body @ticket.save end end class TicketsController < ApplicationController def index list render :action => &...