Radu Spineanu wrote:
> Hello
> 
> I am maintaining the debian package of xmail, and i was just
> reported a bug in the sendmail replacement.
> 
> As a legacy from the old sendmail, scripts expect
> -oi for non-dot mode however  a
> sendmail -oi recipient fails with "empty recipient list"
> while sendmail -i recipient works.
> Since the debian release is getting closer and this is probably
> going to get in the next stable i am going to make a patch that
> fixes this and add it by tommorow.
> 
> However i would apreciate if there would be an official fix for this, 
> and add that.
> 
> 
> Radu
Here is a patch that fixes this...
I could be dead wrong but i think David wanted to add the functionality 
of -oi since it was a mention of it. ("case 'o':")


Radu


-- Attached file included as plaintext by Ecartis --
-- File: sendmail_break

--- ../SendMail.cpp     2004-05-31 02:35:08.000000000 +0300
+++ SendMail.cpp        2004-08-09 23:12:15.000000000 +0300
@@ -480,12 +480,12 @@
 
                        for (int jj = 1; !bEatAll && (pszArgs[ii][jj] != '\0'); jj++) {
                                switch (pszArgs[ii][jj]) {
-                               case ('N'):
-                               case ('O'):
-                               case ('o'):
-                               case ('R'):
-                               case ('V'):
-                               case ('X'):
+                               case ('N'): break;
+                               case ('O'): break;
+                               case ('o'): break;
+                               case ('R'): break;
+                               case ('V'): break;
+                               case ('X'): 
                                        iSkipParam = 1;
                                        break;
 


-
To unsubscribe from this list: send the line "unsubscribe xmail" in
the body of a message to [EMAIL PROTECTED]
For general help: send the line "help" in the body of a message to
[EMAIL PROTECTED]

Reply via email to