Set the right margin for word-wrapping to 70 characters instead of 75.

This commit is contained in:
Peter Simons 2001-01-10 17:12:40 +00:00
parent 5bd861dd77
commit 99aaaee119
4 changed files with 13 additions and 13 deletions

2
help.c
View File

@ -107,7 +107,7 @@ SendHelp(struct Mail * MailStruct,
"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);
}

View File

@ -87,7 +87,7 @@ SendSubscriberList(struct Mail * MailStruct,
"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);
}

View File

@ -91,7 +91,7 @@ AddAddress(struct Mail * MailStruct,
"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 @@ AddAddress(struct Mail * MailStruct,
"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 @@ AddAddress(struct Mail * MailStruct,
"\"%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 @@ AddAddress(struct Mail * MailStruct,
"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 @@ AddAddress(struct Mail * MailStruct,
"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 @@ AddAddress(struct Mail * MailStruct,
"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 " \

View File

@ -102,7 +102,7 @@ DeleteAddress(struct Mail * MailStruct,
"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 @@ DeleteAddress(struct Mail * MailStruct,
"\"%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 @@ DeleteAddress(struct Mail * MailStruct,
"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 @@ DeleteAddress(struct Mail * MailStruct,
"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 @@ DeleteAddress(struct Mail * MailStruct,
"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);
}