Skip to content

Commit

Permalink
fixes #140 - fix storing of sent offline queued messages
Browse files Browse the repository at this point in the history
  • Loading branch information
d99kris committed Jun 3, 2023
1 parent 2aef74d commit ae97e42
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/nmail.1
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man.
.TH NMAIL "1" "May 2023" "nmail v4.22" "User Commands"
.TH NMAIL "1" "June 2023" "nmail v4.23" "User Commands"
.SH NAME
nmail \- ncurses mail
.SH SYNOPSIS
Expand Down
1 change: 1 addition & 0 deletions src/smtpmanager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,7 @@ SmtpManager::Result SmtpManager::PerformAction(const SmtpManager::Action& p_Acti
else if (p_Action.m_IsSendCreatedMessage)
{
SetStatus(Status::FlagSending);
result.m_Message = p_Action.m_CreatedMsg;
result.m_SmtpStatus = smtp.Send(p_Action.m_CreatedMsg, to, cc, bcc);
ClearStatus(Status::FlagSending);
}
Expand Down
2 changes: 1 addition & 1 deletion src/version.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

#include "version.h"

#define NMAIL_VERSION "4.22"
#define NMAIL_VERSION "4.23"

std::string Version::GetBuildOs()
{
Expand Down

0 comments on commit ae97e42

Please sign in to comment.