Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Better handling with drafts and fixed some additional issues #26

Closed
wants to merge 17 commits into from
Closed
Show file tree
Hide file tree
Changes from 14 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 19 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,29 @@ Usage
-----

Once plugin is installed, custom sender button will appear at the right
hand side of the identity selection list.
hand side of the identity selection list, with icon ![Custom-From icon](images/custom_from_on.png).

If you want to disable the "automatic replacement on reply" feature, rename
![Reply Fields](https://github.com/r3c/custom_from/blob/resource/readme/reply_fields.png?raw=true)

If you want to disable the "automatic replacement on reply" feature, for all users, rename
`config.inc.php.dist` file into `config.inc.php`, uncomment the line with a
parameter named `custom_from_compose_auto` and set this value to `false`.

User preferences
-----

On the settings page, in the Preferences menu, Reply settings section,
you can see plugin settings individually for each user,
you can configure various options for Reply:

- **Receiving email address** — replies from the receiving email address without adding parameters.
- **Receiving email address with matching identity** — replies from the receiving email address adding parameters (Bcc, Reply-To) of a matching identity.
- **Receiving email address with default identity** — replies from the receiving email address adding parameters (Bcc, Reply-To) of the default identity.
- **Default identity** — replies from the default identity.

![Reply settings screenshot](https://github.com/r3c/custom_from/blob/resource/readme/settings.png?raw=true)

By default, the **Receiving email address with matching identity** option is set

Thanks
------
Expand Down
3 changes: 3 additions & 0 deletions custom_from.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@ if (window.rcmail) {
.css('display', 'inline');
}

/** Update hash to trigger Roundcube's form validation */
rcmail.cmp_hash += ' ';

disabled = !disabled;
};

Expand Down
Loading