Forum » Forum / Existing Content » Email Message Catalog
Started by: Automatic
On: 1275574732|%e %b %Y, %H:%M %Z|agohover
Number of posts: 2
rss icon RSS: New posts
This is the discussion related to the wiki page Email Message Catalog.
Small Bug, I think...
bensonkybensonky 1275575079|%e %b %Y, %H:%M %Z|agohover

First off, this rocks!

While reading through this I noticed what I think is a small bug. Doubt it would ever show or cause issue, but thought I'd mention it.

method GetResultText   
 ...   
   When = %ObEmail_NotDelivered
      Return "Delivery not attempted";
      Break;
   When = %ObEmail_NotDelivered
      Return "Partially delivered";
      Break;
 ...
end-method;

I think this should actually be

 When = %ObEmail_NotDelivered
      Return "Delivery not attempted";
      Break;
 When = %ObEmail_PartiallyDelivered
      Return "Partially delivered";
      Break;
Reply  |  Options
Unfold Small Bug, I think... by bensonkybensonky, 1275575079|%e %b %Y, %H:%M %Z|agohover
Re: Small Bug, I think...
PrajPraj 1275809731|%e %b %Y, %H:%M %Z|agohover

Nice pick up, really appreciate you pointing this out. I've updated the code and put up a new version of the project. Thanks!

Reply  |  Options
Unfold Re: Small Bug, I think... by PrajPraj, 1275809731|%e %b %Y, %H:%M %Z|agohover
New Post
Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License