Home
last modified time | relevance | path

Searched refs:sent_mail (Results 1 – 17 of 17) sorted by relevance

/dports/mail/horde-imp/imp-6.2.27/lib/Prefs/Special/
H A DSentmail.php89 if (!$ui->vars->sent_mail && $ui->vars->sent_mail_new) {
90 $sent_mail = IMP_Mailbox::get($ui->vars->sent_mail_new)->namespace_append;
92 $sent_mail = IMP_Mailbox::formFrom($ui->vars->sent_mail);
93 if (strpos($sent_mail, self::PREF_SPECIALUSE) === 0) {
94 $sent_mail = IMP_Mailbox::get(substr($sent_mail, strlen(self::PREF_SPECIALUSE)));
95 } elseif (($sent_mail == self::PREF_DEFAULT) &&
97 $sent_mail = IMP_Mailbox::get($sm_default)->namespace_append;
101 if ($sent_mail && !$sent_mail->create()) {
105 return $injector->getInstance('IMP_Identity')->setValue(IMP_Mailbox::MBOX_SENT, $sent_mail);
/dports/mail/elm/elm2.5.8/src/
H A Dsavecopy.c99 sent_mail);
139 strcpy(savename, sent_mail);
153 strcpy(savename, sent_mail);
174 strcpy(savename, sent_mail);
188 strcpy(savename, sent_mail);
209 if(strcmp(sent_mail, savename) == 0) {
216 if ((err = can_open(sent_mail, "a"))) {
223 savename, sent_mail);
228 savename, sent_mail);
231 strcpy(savename, sent_mail);
[all …]
H A Dread_rc.c309 sprintf(sent_mail, default_sentmail); in read_rc_file()
312 do_expand_env("sent_mail", sent_mail, raw_sentmail, sizeof(sent_mail)); in read_rc_file()
314 if(metachar(sent_mail[0])) { in read_rc_file()
315 strcpy(buffer, &sent_mail[1]); in read_rc_file()
316 sprintf(sent_mail, "%s/%s", folders, buffer); in read_rc_file()
H A Dinit.c252 curr_folder.filename, folders, printout, sent_mail, prefixchars, shell,
H A Doptions.c149 (void) expand_env(sent_mail, raw_sentmail, sizeof(sent_mail));
H A Dsave.c527 strcpy(filename, sent_mail);
/dports/mail/horde-imp/imp-6.2.27/lib/Basic/
H A DCompose.php120 if (!$sent_mail) {
122 } elseif ($sent_mail->readonly) {
525 if ($this->vars->sent_mail) {
526 $sent_mail = IMP_Mailbox::formFrom($this->vars->sent_mail);
923 if ($this->vars->sent_mail) {
924 $sent_mail = IMP_Mailbox::formFrom($this->vars->sent_mail);
936 'selected' => $sent_mail
941 if ($sent_mail) {
942 $sent_mail->create();
947 if ($sent_mail) {
[all …]
/dports/finance/odoo/odoo-19d77c2a03335eb95a686bd69a1b56b38e87d609/odoo/addons/website_sale/tests/
H A Dtest_website_sale_cart_recovery.py112 sent_mail = {}
117 sent_mail.update({order: mail})
120 all(len(sent_mail[order]) == 1 for order in orders),
124 all(order.access_token in sent_mail[order].body for order in orders),
/dports/finance/odoo/odoo-19d77c2a03335eb95a686bd69a1b56b38e87d609/odoo/addons/mail/tests/
H A Dcommon.py162 sent_mail = self._find_sent_mail_wemail(email_to)
165 extra = 'In-Reply-To:\r\n\t%s\n' % sent_mail['message_id']
168 extra = 'References:\r\n\t%s\n\r%s' % (sent_mail['message_id'], disturbing_other_msg_id)
172 sent_mail['email_to'],
173 sent_mail['reply_to'],
174 subject='Re: %s' % sent_mail['subject'],
448 sent_mail = next(
457 …self.assertEqual(expected[val], sent_mail[val], 'Value for %s: expected %s, received %s' % (val, e…
459 attachments = sent_mail['attachments']
469 ….assertHtmlEqual(expected[val], sent_mail[val], 'Value for %s: expected %s, received %s' % (val, e…
[all …]
/dports/mail/horde-imp/imp-6.2.27/lib/LoginTasks/Task/
H A DDeleteSentmailMonthly.php54 $sent_mail = $injector->getInstance('IMP_Identity')->getAllSentmail();
57 foreach ($sent_mail as $mbox) {
/dports/mail/horde-imp/imp-6.2.27/lib/Minimal/
H A DCompose.php65 $sent_mail = $identity->getValue(IMP_Mailbox::MBOX_SENT);
66 $save_sent_mail = (!$sent_mail || $sent_mail->readonly)
155 $sent_mail = $identity->getValue(IMP_Mailbox::MBOX_SENT);
330 'sent_mail' => $sent_mail
/dports/devel/bugzilla44/bugzilla-4.4.13/Bugzilla/
H A DBugMail.pm210 my $sent_mail = 0;
248 $sent_mail = sendMail(
262 if ($sent_mail) {
/dports/x11-themes/kde-icons-lime-rade8/Lime-RAD.E8-3.1/
H A DCHANGELOG2 kmail inbox/outbox/sent_mail.
/dports/x11-themes/kde-icons-graphite-rade8/Graphite-RAD.E8-3.1/
H A DCHANGELOG2 kmail inbox/outbox/sent_mail.
/dports/devel/bugzilla50/bugzilla-5.0.4/Bugzilla/
H A DBugMail.pm269 my $sent_mail = sendMail(
282 push(@sent, $user->login) if $sent_mail;
/dports/mail/elm/elm2.5.8/hdrs/
H A Delm_globals.h303 EXTERN char sent_mail[SLEN]; /* name of file to save copies to */ variable
/dports/mail/horde-imp/imp-6.2.27/lib/
H A DCompose.php1018 $sent_mail = IMP_Mailbox::get($opts['sent_mail']);
1019 $sent_mail->create();
1028 $imp_imap->append($sent_mail, array(array('data' => $fcc, 'flags' => $flags)));
1030 …fication->push(sprintf(_("Message sent successfully, but not saved to %s."), $sent_mail->display));