OSSP CVS Repository

ossp - Check-in [263]
Not logged in
[Honeypot]  [Browse]  [Home]  [Login]  [Reports
[Search]  [Ticket]  [Timeline
  [Patchset]  [Tagging/Branching

Check-in Number: 263
Date: 2001-Jan-10 18:12:40 (local)
2001-Jan-10 17:12:40 (UTC)
User:simons
Branch:
Comment: Set the right margin for word-wrapping to 70 characters instead of 75.
Tickets:
Inspections:
Files:
ossp-pkg/petidomo/help.c      1.6 -> 1.7     2 inserted, 2 deleted
ossp-pkg/petidomo/members.c      1.6 -> 1.7     2 inserted, 2 deleted
ossp-pkg/petidomo/subscribe.c      1.7 -> 1.8     7 inserted, 7 deleted
ossp-pkg/petidomo/unsubscribe.c      1.6 -> 1.7     6 inserted, 6 deleted

ossp-pkg/petidomo/help.c 1.6 -> 1.7

--- help.c       2001/01/08 20:36:19     1.6
+++ help.c       2001/01/10 17:12:40     1.7
@@ -1,6 +1,6 @@
 /*
    $Source: /v/ossp/cvs/ossp-pkg/petidomo/help.c,v $
-   $Revision: 1.6 $
+   $Revision: 1.7 $
 
    Copyright (C) 2000 by CyberSolutions GmbH, Germany.
 
@@ -107,7 +107,7 @@
 "sending this request to the wrong address.\n\nYou can receive a list of all " \
 "mailing lists available here by sending the command \"INDEX\" to the " \
 "mailing list server.", param1);
-            text_wordwrap(buffer, 75);
+            text_wordwrap(buffer, 70);
             fprintf(fh, "%s\n", buffer);
             CloseMailer(fh);
         }


ossp-pkg/petidomo/members.c 1.6 -> 1.7

--- members.c    2001/01/08 20:36:19     1.6
+++ members.c    2001/01/10 17:12:40     1.7
@@ -1,6 +1,6 @@
 /*
    $Source: /v/ossp/cvs/ossp-pkg/petidomo/members.c,v $
-   $Revision: 1.6 $
+   $Revision: 1.7 $
 
    Copyright (C) 2000 by CyberSolutions GmbH, Germany.
 
@@ -87,7 +87,7 @@
 "afraid. If there's a certain reason, why you need to know the list " \
 "of subscribed addresses, please contact the mailing list administrator " \
 "under the address \"%s\" instead.", owner);
-            text_wordwrap(buffer, 75);
+            text_wordwrap(buffer, 70);
             fprintf(fh, "%s\n", buffer);
             CloseMailer(fh);
         }


ossp-pkg/petidomo/subscribe.c 1.7 -> 1.8

--- subscribe.c  2001/01/10 17:08:22     1.7
+++ subscribe.c  2001/01/10 17:12:40     1.8
@@ -1,6 +1,6 @@
 /*
    $Source: /v/ossp/cvs/ossp-pkg/petidomo/subscribe.c,v $
-   $Revision: 1.7 $
+   $Revision: 1.8 $
 
    Copyright (C) 2000 by CyberSolutions GmbH, Germany.
 
@@ -91,7 +91,7 @@
                                            "to receive an overview over the available mailing lists. Also, " \
                                            "use the command HELP to verify that you got the command syntax " \
                                            "right.", address);
-                text_wordwrap(buffer, 75);
+                text_wordwrap(buffer, 70);
                 fprintf(fh, "%s\n", buffer);
                 CloseMailer(fh);
                 }
@@ -137,7 +137,7 @@
                                            "subscribe addresses. Your request has been forwarded to the " \
                                            "appropriate person, so please don't send any further mail. You will " \
                                            "be notified as soon as possible.", listname);
-                text_wordwrap(buffer, 75);
+                text_wordwrap(buffer, 70);
                 fprintf(fh, "%s\n", buffer);
                 CloseMailer(fh);
                 }
@@ -161,7 +161,7 @@
                                            "\"%s\" tried to subscribe the address \"%s\" to the \"%s\" mailing list, " \
                                            "but couldn't provide the correct password. To subscribe him, send the " \
                                            "following commands to the server:", originator, address, listname);
-                text_wordwrap(buffer, 75);
+                text_wordwrap(buffer, 70);
                 fprintf(fh, "%s\n\n", buffer);
                 fprintf(fh, "password <AdminPassword>\n");
                 fprintf(fh, "subscribe %s %s\n", address, listname);
@@ -201,7 +201,7 @@
                                            "address not equal to the one, you are mailing from. Your request has been forwarded " \
                                            "to the list administrator, so please don't send any futher mail. You will be notified " \
                                            "as soon as possible.", listname);
-                text_wordwrap(buffer, 75);
+                text_wordwrap(buffer, 70);
                 fprintf(fh, "%s\n", buffer);
                 CloseMailer(fh);
                 }
@@ -226,7 +226,7 @@
                                            "The list type does not allow subscribing addresses not equal to the From: " \
                                            "address, though, so the request has been denied. To subscribe this person " \
                                            "manually, send the following commands to the server:", originator, address, listname);
-                text_wordwrap(buffer, 75);
+                text_wordwrap(buffer, 70);
                 fprintf(fh, "%s\n\n", buffer);
                 fprintf(fh, "password <AdminPassword>\n");
                 fprintf(fh, "subscribe %s %s\n", address, listname);
@@ -321,7 +321,7 @@
                                        "do so by sending the following command to \"%s-request@%s\":",
                                        originator, address, listname, listname, ListConfig->fqdn);
             }
-        text_wordwrap(buffer, 75);
+        text_wordwrap(buffer, 70);
         fprintf(fh, "%s\n\n", buffer);
         fprintf(fh, "unsubscribe %s\n\n", address);
         fprintf(fh, "Please save a copy of this mail, to make sure you remember how " \


ossp-pkg/petidomo/unsubscribe.c 1.6 -> 1.7

--- unsubscribe.c        2001/01/08 20:36:19     1.6
+++ unsubscribe.c        2001/01/10 17:12:40     1.7
@@ -1,6 +1,6 @@
 /*
    $Source: /v/ossp/cvs/ossp-pkg/petidomo/unsubscribe.c,v $
-   $Revision: 1.6 $
+   $Revision: 1.7 $
 
    Copyright (C) 2000 by CyberSolutions GmbH, Germany.
 
@@ -102,7 +102,7 @@
 "unsubscribe addresses. Your request has been forwarded to the " \
 "appropriate person, so please don't send any further mail. You will " \
 "be notified as soon as possible.", listname);
-                text_wordwrap(buffer, 75);
+                text_wordwrap(buffer, 70);
                 fprintf(fh, "%s\n", buffer);
                 CloseMailer(fh);
             }
@@ -125,7 +125,7 @@
 "\"%s\" tried to unsubscribe the address \"%s\" from the \"%s\" mailing list, " \
 "but couldn't provide the correct password. To unsubscribe him, send the " \
 "following commands to the server:", originator, address, listname);
-                text_wordwrap(buffer, 75);
+                text_wordwrap(buffer, 70);
                 fprintf(fh, "%s\n\n", buffer);
                 fprintf(fh, "password <AdminPassword>\n");
                 fprintf(fh, "unsubscribe %s %s\n", address, listname);
@@ -163,7 +163,7 @@
 "address not equal to the one, you are mailing from. Your request has been forwarded " \
 "to the list administrator, so please don't send any futher mail. You will be notified " \
 "as soon as possible.", listname);
-                text_wordwrap(buffer, 75);
+                text_wordwrap(buffer, 70);
                 fprintf(fh, "%s\n", buffer);
                 CloseMailer(fh);
             }
@@ -187,7 +187,7 @@
 "The list type does not allow unsubscribing addresses not equal to the From: " \
 "address, though, so the request has been denied. To unsubscribe this person " \
 "manually, send the following commands to the server:", originator, address, listname);
-                text_wordwrap(buffer, 75);
+                text_wordwrap(buffer, 70);
                 fprintf(fh, "%s\n\n", buffer);
                 fprintf(fh, "password <AdminPassword>\n");
                 fprintf(fh, "unsubscribe %s %s\n", address, listname);
@@ -272,7 +272,7 @@
 "Per request from \"%s\", the address \"%s\" has been unsubscribed from the " \
 "\"%s\" mailing list.\n\n", originator, address, listname);
             }
-            text_wordwrap(buffer, 75);
+            text_wordwrap(buffer, 70);
             fprintf(fh, "%s", buffer);
             CloseMailer(fh);
         }

CVSTrac 2.0.1