Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to delete mails with a certain header or a certain sender with INDY 10 / DELPHI. I already can query my email account with INDY10. Here is the existing demo code:

procedure TForm1.BtnCheckClick(Sender: TObject);
var
  i: Integer;
  Msg: TIdMessage;
  MailCount: Integer;
begin
  if IdPop31.Connected then
  begin
    MailCount := IdPOP31.CheckMessages;
    lbMailCount.Caption := IntToStr(MailCount);
    lbMailboxSize.Caption := IntToStr(IdPOP31.RetrieveMailBoxSize) + ' Bytes';

    for i := 1 to MailCount do
    begin
      Msg := TIdMessage.Create;
      try
        IdPOP31.RetrieveHeader(i, Msg);
        MailsList.Lines.Add(Msg.Subject + ' from ' + Msg.From.Text);
      finally
        Msg.Free;
      end;
    end;
  end;
end;
share|improve this question
You have the message number in your i iterator, so simply filter messages you want to delete by adding a conditional statement (e.g. if Msg.Sender.Address = 'somebody@example.com' then, for sender) and use the Delete method. The Delete method will mark messages for deletion and when you disconnect from the POP3 server, they'll be physically removed. – TLama Jan 27 at 13:22
I Copy all the msg to a Class TObjectList, If I delete a Item in the objectlist I want to delete the msg on the inbox in my pop3 – user1769184 Jan 27 at 13:31
Then don't forget that you can't Free message objects when you'll be using them in your object list. But the principle will be the same, you will still use the TIdPOP3.Delete method for this. – TLama Jan 27 at 14:47
ok , already these comments enabled my for a solution – user1769184 Jan 27 at 21:46

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.