~ubuntu-branches/ubuntu/raring/kdepim/raring-proposed

« back to all changes in this revision

Viewing changes to mailcommon/filter/filteractionreplyto.cpp

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2012-06-07 07:56:38 UTC
  • mfrom: (0.2.27)
  • Revision ID: package-import@ubuntu.com-20120607075638-0luhdq11z7sgvs4m
Tags: 4:4.8.80-0ubuntu1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (c) 1996-1998 Stefan Taferner <taferner@kde.org>
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or modify
 
5
 * it under the terms of the GNU General Public License as published by
 
6
 * the Free Software Foundation; either version 2 of the License, or
 
7
 * (at your option) any later version.
 
8
 *
 
9
 * This program is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
 * GNU General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU General Public License
 
15
 * along with this program; if not, write to the Free Software
 
16
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 
17
 *
 
18
 */
 
19
 
 
20
#include "filteractionreplyto.h"
 
21
 
 
22
#include <KDE/KLocale>
 
23
 
 
24
using namespace MailCommon;
 
25
 
 
26
FilterAction* FilterActionReplyTo::newAction()
 
27
{
 
28
  return new FilterActionReplyTo;
 
29
}
 
30
 
 
31
FilterActionReplyTo::FilterActionReplyTo( QObject *parent )
 
32
  : FilterActionWithAddress( "set Reply-To", i18n( "Set Reply-To To" ), parent )
 
33
{
 
34
  mParameter.clear();
 
35
}
 
36
 
 
37
FilterAction::ReturnCode FilterActionReplyTo::process( ItemContext &context ) const
 
38
{
 
39
  const KMime::Message::Ptr msg = context.item().payload<KMime::Message::Ptr>();
 
40
  KMime::Headers::Generic *header = new KMime::Headers::Generic( "Reply-To", msg.get(), mParameter, "utf-8" );
 
41
  msg->setHeader( header );
 
42
  msg->assemble();
 
43
 
 
44
  context.setNeedsPayloadStore();
 
45
 
 
46
  return GoOn;
 
47
}