mirror of
https://github.com/RGBCube/serenity
synced 2025-07-16 16:37:35 +00:00

This utilises LibIMAP and LibWeb to provide an e-mail client. The only way currently to connect to a server and login is with a config file. This config file should be stored in ~/.config/Mail.ini Here is an example config file: ``` [Connection] Server=email.example.com Port=993 TLS=true [User] Username=test@example.com Password=Example!1 ``` Since this is stored in plaintext and uses a less secure login method, I'd recommend not using this on your main accounts :^) This has been tested on Gmail and Outlook. For Gmail, you either have to generate an app password if you have 2FA enabled, or enable access from less secure apps in your account settings.
38 lines
1.1 KiB
C++
38 lines
1.1 KiB
C++
/*
|
|
* Copyright (c) 2021, Luke Wilde <lukew@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibGUI/Model.h>
|
|
#include <LibIMAP/Objects.h>
|
|
|
|
class AccountHolder;
|
|
|
|
class MailboxTreeModel final : public GUI::Model {
|
|
public:
|
|
static NonnullRefPtr<MailboxTreeModel> create(AccountHolder const& account_holder)
|
|
{
|
|
return adopt_ref(*new MailboxTreeModel(account_holder));
|
|
}
|
|
|
|
virtual ~MailboxTreeModel() override;
|
|
|
|
virtual int row_count(GUI::ModelIndex const& = GUI::ModelIndex()) const override;
|
|
virtual int column_count(GUI::ModelIndex const& = GUI::ModelIndex()) const override;
|
|
virtual GUI::Variant data(GUI::ModelIndex const&, GUI::ModelRole) const override;
|
|
virtual GUI::ModelIndex index(int row, int column, GUI::ModelIndex const& parent = GUI::ModelIndex()) const override;
|
|
virtual GUI::ModelIndex parent_index(GUI::ModelIndex const&) const override;
|
|
virtual void update() override;
|
|
|
|
private:
|
|
explicit MailboxTreeModel(AccountHolder const&);
|
|
|
|
AccountHolder const& m_account_holder;
|
|
|
|
GUI::Icon m_mail_icon;
|
|
GUI::Icon m_folder_icon;
|
|
GUI::Icon m_account_icon;
|
|
};
|