Home
last modified time | relevance | path

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

/dragonfly/contrib/cvs-1.12/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";
/dragonfly/usr.sbin/cron/cron/
H A Ddo_command.c460 char mailcmd[MAX_COMMAND]; in child_process() local
464 snprintf(mailcmd, sizeof(mailcmd), in child_process()
466 if (!(mail = cron_popen(mailcmd, "w", e))) { in child_process()