art.lussos (art lussos)
- Login: art.lussos
- Registered on: 08/06/2011
- Last sign in: 09/24/2013
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 6 | 6 |
Activity
12/01/2011
-
01:48 AM Ruby Feature #5692 (Closed): IMAP -- error for msg_att will report the UID
- I am getting errors in msg_att and it would be easier if I could get the UID of the email causing the issue. What I propose is that we pass into the method msg_att the UID and if an error occurs report the UID.
def numeric_response
...
11/12/2011
-
01:20 AM Ruby Bug #5620 (Closed): (Net::IMAP::ResponseParseError) unexpected token LBRA (expected SPACE)
- We have a found an issue with one of the IMAP servers ( IMAP4rev1) we connect to:
(Net::IMAP::ResponseParseError) unexpected token LBRA (expected SPACE)
.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/net/imap.rb:3235:in `parse_error'
...
09/28/2011
-
12:49 AM Ruby Feature #5373 (Closed): SMTP - new method
- I would like to add the following method to smtp.rb command dispatcher section.
# The reset command tells the mail server that the current mail transaction should be aborted.
def reset
getok('RSET')
end
08/24/2011
-
12:16 AM Ruby Bug #5162: IMAP error formatting string
- Shugo Maeda wrote:
> art lussos wrote:
> ...
For consistency I believe you are correct, I just felt it would make it easier to read.
08/17/2011
-
07:25 AM Ruby Feature #5198 (Closed): IMAP -- would like fucntions that return the default ports
- POP and SMTP have functions like this and it would be nice to have them in IMAP as well.
# The default port for IMAP connections, port 143
def self.default_imap_port
PORT
end
# The default port for POP3S connections, por...
08/06/2011
-
03:18 AM Ruby Bug #5163 (Closed): (Net::IMAP::ResponseParseError) unknown attribute `)'
- Every now and then we get the following ResponseParseError.
(Net::IMAP::ResponseParseError) unknown attribute `)'
Full Trace:
.....rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/net/imap.rb:3235:in `parse_error'
.....rvm/rubies/ruby-1... -
12:47 AM Ruby Bug #5162 (Rejected): IMAP error formatting string
- In the method msg_att in the file imap.rb, the parse error is written as
parse_error("unknown attribute `%s'", token.value), I believe it should be parse_error("unknown attribute '%s'", token.value).
Single quotes on both sides of ...