Feature toggle added to allow list subscribers to email a list (discussion list type behaviour)#15
Open
Vzzbux wants to merge 1 commit intoarnoldle:masterfrom
Open
Feature toggle added to allow list subscribers to email a list (discussion list type behaviour)#15Vzzbux wants to merge 1 commit intoarnoldle:masterfrom
Vzzbux wants to merge 1 commit intoarnoldle:masterfrom
Conversation
…ssion list type behaviour). Take setting from list table (or use default if it's not there) Add Subscribers-can-email-list option to list edit screen
Owner
|
I have retired from software development and am no longer supporting this plugin.
Arnold
… On May 31, 2017, at 5:27 PM, Vzzbux ***@***.***> wrote:
I needed a way to allow any subscriber of a list email the rest of the list. This seems to work okay.
New option added to list table (uses default old behaviour if it's not there).
Option added to list edit screen.
Not sure if the new column would be automatically added to existing installations... if not, this SQL would do it:
ALTER TABLE `phplist`.`phplist_submitByMailPlugin_list`
ADD COLUMN `subscribers_can_send` TINYINT(4) NULL DEFAULT '0' AFTER `nameonly`;
You can view, comment on, or merge this pull request online at:
#15 <#15>
Commit Summary
Feature toggle added to allow list subscribers to email a list (discussion list type behaviour).
File Changes
M plugins/submitByMailPlugin.php <https://github.com/arnoldle/phplist-plugin-submitByMailPlugin/pull/15/files#diff-0> (37)
M plugins/submitByMailPlugin/configure_a_list.php <https://github.com/arnoldle/phplist-plugin-submitByMailPlugin/pull/15/files#diff-1> (5)
M plugins/submitByMailPlugin/edit_list.php <https://github.com/arnoldle/phplist-plugin-submitByMailPlugin/pull/15/files#diff-2> (15)
Patch Links:
https://github.com/arnoldle/phplist-plugin-submitByMailPlugin/pull/15.patch <https://github.com/arnoldle/phplist-plugin-submitByMailPlugin/pull/15.patch>
https://github.com/arnoldle/phplist-plugin-submitByMailPlugin/pull/15.diff <https://github.com/arnoldle/phplist-plugin-submitByMailPlugin/pull/15.diff>
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub <#15>, or mute the thread <https://github.com/notifications/unsubscribe-auth/AFqj-2crgtYOoLE0CcFDXgpCoNiORORnks5r_elmgaJpZM4NsRmh>.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I needed a way to allow any subscriber of a list email the rest of the list. This seems to work okay.
New option added to list table (uses default old behaviour if it's not there).
Option added to list edit screen.
Not sure if the new column would be automatically added to existing installations... if not, this SQL would do it: