Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
PIM
KDE PIM Runtime
Commits
567b5019
Commit
567b5019
authored
Sep 24, 2021
by
Laurent Montel
😁
Browse files
BUG 442884: Fix DSN support
parent
f545419b
Pipeline
#82499
failed with stage
in 28 minutes and 24 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
CMakeLists.txt
View file @
567b5019
...
...
@@ -70,7 +70,7 @@ set(KDEPIMRUNTIME_LIB_SOVERSION "5")
set
(
AKONADI_VERSION
"5.18.41"
)
set
(
IDENTITYMANAGEMENT_LIB_VERSION
"5.18.42"
)
set
(
KMAILTRANSPORT_LIB_VERSION
"5.18.4
0
"
)
set
(
KMAILTRANSPORT_LIB_VERSION
"5.18.4
1
"
)
set
(
CALENDARUTILS_LIB_VERSION
"5.18.40"
)
set
(
KIMAP_LIB_VERSION
"5.18.40"
)
set
(
KMBOX_LIB_VERSION
"5.18.40"
)
...
...
@@ -79,7 +79,7 @@ set(KONTACTINTERFACE_LIB_VERSION "5.18.40")
set
(
AKONADIKALARM_LIB_VERSION
"5.18.40"
)
set
(
KMIME_LIB_VERSION
"5.18.40"
)
set
(
XMLRPCCLIENT_LIB_VERSION
"5.18.40"
)
set
(
AKONADIMIME_LIB_VERSION
"5.18.4
0
"
)
set
(
AKONADIMIME_LIB_VERSION
"5.18.4
1
"
)
set
(
AKONADICONTACT_LIB_VERSION
"5.18.40"
)
set
(
AKONADINOTE_LIB_VERSION
"5.18.40"
)
set
(
PIMCOMMON_LIB_VERSION
"5.18.40"
)
...
...
agents/maildispatcher/sendjob.cpp
View file @
567b5019
...
...
@@ -163,6 +163,8 @@ void SendJob::doTraditionalTransport()
job
->
setTo
(
addressAttribute
->
to
());
job
->
setCc
(
addressAttribute
->
cc
());
job
->
setBcc
(
addressAttribute
->
bcc
());
job
->
setDeliveryStatusNotification
(
addressAttribute
->
deliveryStatusNotification
());
qDebug
()
<<
" addressAttribute->deliveryStatusNotification()*********************************"
<<
addressAttribute
->
deliveryStatusNotification
();
Friedrich W. H. Kossebau
@kossebau
·
Sep 24, 2021
Developer
@mlaurent
Was this qDebug() intended to land? :)
@mlaurent Was this qDebug() intended to land? :)
Laurent Montel
😁
@mlaurent
·
Sep 25, 2021
Author
Developer
oops :) fixed
oops :) fixed
Please
register
or
sign in
to reply
// Signals.
connect
(
job
,
&
TransportJob
::
result
,
this
,
&
SendJob
::
transportResult
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment