* MTS specific variables
*/
static char *mts_method = "smtp";
-int sm_mts = MTS_SENDMAIL_SMTP;
+int sm_mts = MTS_SMTP;
char *sendmail = SENDMAILPATH;
/*
int i, r;
char *bp;
char buffer[BUFSIZ];
- size_t len;
for (bp = buffer; *s; bp++, s++) {
if (*s != QUOTE) {
}
*bp = 0;
- len = strlen (buffer) + 1;
- bp = mh_xmalloc (len);
- memcpy (bp, buffer, len);
-
- return bp;
+ return mh_xstrdup(buffer);
}
/*