Lines Matching refs:new_path_buf
643 VSTRING *new_path_buf; in requeue_one() local
655 new_path_buf = vstring_alloc(100); in requeue_one()
671 (void) mail_queue_path(new_path_buf, MAIL_QUEUE_MAILDROP, queue_id); in requeue_one()
672 if (postrename(old_path, STR(new_path_buf)) == 0) { in requeue_one()
674 if (utime(STR(new_path_buf), &tbuf) < 0) in requeue_one()
675 msg_warn("%s: reset time stamps: %m", STR(new_path_buf)); in requeue_one()
682 vstring_free(new_path_buf); in requeue_one()
693 VSTRING *new_path_buf; in hold_one() local
704 new_path_buf = vstring_alloc(100); in hold_one()
725 (void) mail_queue_path(new_path_buf, MAIL_QUEUE_HOLD, queue_id); in hold_one()
726 if (postrename(old_path, STR(new_path_buf)) == 0) { in hold_one()
733 vstring_free(new_path_buf); in hold_one()
744 VSTRING *new_path_buf; in release_one() local
754 new_path_buf = vstring_alloc(100); in release_one()
766 (void) mail_queue_path(new_path_buf, MAIL_QUEUE_DEFERRED, queue_id); in release_one()
767 if (postrename(old_path, STR(new_path_buf)) == 0) { in release_one()
773 vstring_free(new_path_buf); in release_one()