Home
last modified time | relevance | path

Searched refs:mailcmd (Results 1 – 3 of 3) sorted by relevance

/netbsd-src/external/gpl2/xcvs/dist/contrib/
H A Dlog.in130 my $mailcmd = "| Mail -s 'CVS update: $modulepath'";
156 $mailcmd = "$mailcmd $users";
157 $mailfh = new IO::File $mailcmd
158 or die "Could not Exec($mailcmd): $!\n";
233 die "Pipe to $mailcmd failed" if $?;
H A Dmfpipe.in70 $mailcmd = "| mail -s 'CVS update notice'";
90 $mailcmd = "$mailcmd $users";
91 open(MAIL, $mailcmd) || die "Execing $mail: $!\n";
/netbsd-src/external/bsd/cron/dist/
H A Ddo_command.c200 char mailcmd[MAX_COMMAND]; in read_data() local
204 if (strlens(MAILFMT, MAILARG, NULL) + 1 >= sizeof mailcmd) { in read_data()
209 (void)snprintf(mailcmd, sizeof(mailcmd), MAILFMT, MAILARG); in read_data()
211 if (!(mail = cron_popen(mailcmd, "w", e->pwd))) { in read_data()
213 "cannot run `%s'", mailcmd); in read_data()