https://github.com/r3c/custom_from
Plugin for Roundcube webmail, enable virtual email sender input.
https://github.com/r3c/custom_from
from identities php roundcube sender
Last synced: 5 months ago
JSON representation
Plugin for Roundcube webmail, enable virtual email sender input.
- Host: GitHub
- URL: https://github.com/r3c/custom_from
- Owner: r3c
- License: other
- Created: 2012-01-08T10:20:44.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2025-12-11T13:59:19.000Z (5 months ago)
- Last Synced: 2025-12-12T17:38:19.034Z (5 months ago)
- Topics: from, identities, php, roundcube, sender
- Language: PHP
- Homepage: https://plugins.roundcube.net/#/packages/r3c/custom-from
- Size: 233 KB
- Stars: 19
- Watchers: 5
- Forks: 16
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Custom-From README file
## Overview
This plugin adds a blue button to the compose screen, next to the identities
selection dropdown. By clicking it, a textbox will replace the dropdown,
allowing you to enter whatever you want as sender value (it must be a valid
"From:" header field value, though).
When replying to an e-mail sent to you through an address not in your
identities list, plugin will automatically fire and set "From:" header to the
address the original e-mail was sent to.
## Install
### Option 1: install with Composer
Execute `composer require r3c/custom-from` from your RoundCube install
directory and run the install command. See instructions from RoundCube website
for details: https://plugins.roundcube.net/.
### Option 2: install manually
Clone repository content to a `custom_from` directory inside your RoundCube
`plugins` directory, so that file `custom_from.php` file can be found at
`$ROUNDCUBE_INSTALL_DIRECTORY/plugins/custom_from/custom_from.php`.
cd $ROUNDCUBE_INSTALL_DIRECTORY
git clone https://github.com/r3c/custom_from.git
Then reference plugin by adding an item "custom_from" to RoundCube plugins list
in configuration (variable `$config['plugins']` variable in file
`$ROUNDCUBE_INSTALL_DIRECTORY/config/main.inc.php`). Ensure your web user has
read access to the plugin directory and all files in it.
## Usage
Once plugin is installed, custom sender button will appear at the right
hand side of the identity selection list.
Open "Reply address (Custom From)" in user preferences to configure how plugin
should behave when replying to an e-mail.
## Thanks
- dwurf (https://github.com/dwurf) for the globals $IMAP and $USER fix
- Peter Dey (https://github.com/peterdey) for the custom header feature
- kermit-the-frog (https://github.com/kermit-the-frog) for various bugfixes