| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15367 | [phplist] Command Line | major | N/A | 18-11-09 20:06 | 18-11-09 20:06 |
|
|
|||||
| Reporter: | marxarelli | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | 2.10.10 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | Command-line access control is insecure | ||||
| Description: |
In index.php, the USER environment variable is checked against the global $commandline_users to determine the process owner's access to invocation of PHPList scripts from the command line. This method is insecure as environment variables are easily spoofed. If you really want to implement this type of access control, you can check for the process user with posix_getpwuid(posix_getuid()). However, these functions are only available through the POSIX extension which is not always loaded. This access control seems unnecessary anyway, as POSIX permissions and ACLs are sufficient. |
||||
| Steps To Reproduce: | |||||
| Additional Information: |
$ USER=notme php -r 'print_r($_SERVER["USER"]."\n");' notme |
||||
| Attached Files: | |||||
| There are no notes attached to this issue. |
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15366 | [phplist] Template Management | feature | always | 16-11-09 20:16 | 16-11-09 20:16 |
|
|
|||||
| Reporter: | adrian15 | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | 2.10.10 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | Add basic template ownership | ||||
| Description: |
This patch adds template ownership to phplist. It means that each admin can create their own templates and one admin cannot see another admin's template. I copy and paste in "Additional information" field the basic instructions on how to use it. I am very interested in this patch becoming part of the official phplist. So I am ready to correct it as many times as it is needed so that it fits the way that you want things to be coded or if it needs to be improved somehow or whatever. I think I have done a great job because I have also coded the database upgrade part but it's up to you to judge my work so that we can improve it a lot better and add it to official phplist upstream code. Thank you very much for your attention. adrian15 |
||||
| Steps To Reproduce: | |||||
| Additional Information: |
Patch instructions This patch applies for phplist 2.10.10. Here there are some generic instructions to apply it: Instrucciones In any pc: Save .diff file on phplist_patrones folder. Save/Download phplist-2.10.10.tgz (Available at phplist.com webpage) Inside phplist_patrones folder we make desde_cero folder. mkdir desde_cero We enter inside it and untar cd desde_cero tar xvzf ../phplist-2.10.10.tgz Let's apply the patch patch -p1 < ../phplist_basic_template_ownership_support.diff We rename the folder : mv phplist-2.10.10 phplist-2.10.11 We create another tgz file: tar cvzf phplist-2.10.11.tgz phplist-2.10.11 Now we are going to be able to work with phplist-2.10.11.tgz file. Now we go to the machine where we want to install or upgrade our new improved with template ownership support phplist. Optional: With phpmyadmin or a similar tool we can make a database backup in order to recreate it if something fails. Let's rename the folder /var/www/lists/ (where we can see admin,config,dl.php,... folders/files))and we rename it to lists_old (Do not remove it yet!). mv /var/www/lists /var/www/lists_old Let's untar phplist-2.10.11.tgz (Let's suppose that we have saved a copy in the /tmp folder) cd /tmp tar xvzf phplist-2.10.11.tgz cp -r phplist-2.10.11/public_html/lists /var/www Now we are going to recover our old config file: cd /var/www/lists/config cp ../../lists_old/config/config.php config.php We visit: http://url/lists/admin/ [^] We login as a super admin (usually admin). As we are requested we click "upgrade" link. And we click on "here" link. We should see: Information: Success If we already had patterns we should assign them an admin in order to use them. We can use phpmyadmin for this task. We will check admin table first. In the admin table we can identify each one of the admin ids (We will use this data later). We go to template table. In each one of its rows we will edit the column adminid and we will set it to the id value that we had already seen in the admin table so that each template gets associated an admin. Note: As you might think if you have too many data you can try to speed things with an appropiated SQL sentence. Optional: Now it is safe to delete /var/www/lists_old/ but, as always, the best way of doing things is saving a copy of this folder, just in case. And, of course, remove it from /var/www folder so that the folder cannot be accessed from outside the server. And that's all. |
||||
| Attached Files: | phplist_basic_template_ownership_support.diff (11 KB) 16-11-09 20:16 | ||||
| There are no notes attached to this issue. |
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15283 | [phplist] Message Send Process | minor | always | 11-05-09 16:18 | 16-11-09 09:32 |
|
|
|||||
| Reporter: | h2b2 | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | assigned | Product Version: | 2.10.10 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | v2.10.10: Date criteria does not work | ||||
| Description: |
Using Date attributes as criteria does not seem to work anymore. This issue is reported by Aidan: ==== START QUOTE ==== On the Criteria tab, I try to add a criterion based on the date attribute - I choose the date attribute from the dropdown and enter the date in the format specified, dd-mm-yyyy, and click 'Add Criterion'. But it replaces the date I entered with 0. I get the message 'Adding Submission Date isbefore 0' and it adds a line to the 'Existing Criteria' table which also has '0' in the values column. Running the Calculate function shows that this criterion has no effect on the number of results returned. === END QUOTE === Source: http://forums.phplist.com/viewtopic.php?f=17&t=24512#p61910 [^] Issue confirmed on my installation too. |
||||
| Steps To Reproduce: | |||||
| Additional Information: |
Had a quick look at the code and it seems to me that the use of the cleanCommaList function in send_core.php causes problems when Date type attibutes are used as criteria. This is a possible fix which seems to work, though I haven't tested it thoroughly. It basically reverts two code lines back to what it was in the previous version: In lists/admin/send_core.php 1. change line 495 from this: $values = cleanCommaList($values); to this: // $values = cleanCommaList($values); 2. change line 859 from this: $where_clause .= cleanCommaList($crit_data["values"]) . ") )"; to this: $where_clause .= $crit_data["values"] . ") )"; NOTE: I think the cleanCommaList function was applied to fix this issue: http://mantis.phplist.com/view.php?id=15211 [^] Removing cleanCommaList did not produce any query errors, so the workaround solution suggested by davideg in 15211 wasn't needed. |
||||
| Attached Files: | |||||
| Notes | |||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15359 | [phplist] Authentication System | major | always | 03-11-09 00:25 | 14-11-09 02:41 |
|
|
|||||
| Reporter: | rrrrob | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | 2.10.10 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | User Specific Authentication Pages Loose Formatting | ||||
| Description: |
when the phplis driven site directs a user to a user specific login page (one that needs a password) the formatting of the page becomes generic causing the user to think they have left the current site. This is causing some users to think they have been redirected under false pretenses. It happens when ever they are asked for their password. There is a complete list of what has been found and done to this point at the following link in the forums http://forums.phplist.com/viewtopic.php?f=17&t=28879 [^] |
||||
| Steps To Reproduce: | |||||
| Additional Information: | Have compared the index files of versions 2.10.9 and 2.10.10 and noticed that most of the changes between the two relate to the unsubscribe function. going to post current findings to the forum as well in more detail. | ||||
| Attached Files: | patch-15359.diff (0 KB) 11-11-09 18:56 | ||||
| Notes | |||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15320 | [phplist] Subscribe Process | feature | always | 11-08-09 11:11 | 13-11-09 20:57 |
|
|
|||||
| Reporter: | Thorsten Albrecht | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | 2.10.10 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | Unsubscription should only be possible by a subscriber himself and not by a third person | ||||
| Description: |
It's possible to unsubscribe somebody else just with the knowledge of his email address (e.g. with mydomain.com/lists/?unsubscribe). One does not have to know his personal preference/unsubscribe link. The unsubscribed user is _immediately_ put on the blacklist which is probably not what he want's to. I think that this should not be possible. This is an inconsitent behaviour related to the procedure of suscribing where a confirmation mail is needed. Also, this is an security issue. Unsubscribing should only be possible using one's personal preference link which is normally included in every mailing or which can be sent to the user by mail upon request. If the unsubscribe process should be possible using the unsubscribe link as described above (without any userid), there should be sent a confirmation link to the user. This functionality should be provided without the need of enabling user passwords. Thorsten |
||||
| Steps To Reproduce: | |||||
| Additional Information: | |||||
| Attached Files: | |||||
| Notes | |||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15226 | [phplist] User Management | major | always | 02-02-09 20:39 | 12-11-09 23:42 |
|
|
|||||
| Reporter: | spiro | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | |||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | User updates preferrences and receives page error - Undefined Index & Variable (v.2.10.9) | ||||
| Description: |
Error page occurring when user follows link in received mail to update their details. The correct userid is parsed and the user's details displayed ready for ammendment but when these have been changed and the update button clicked the error page appears as described in additional information. Observations: User still receives the email notification of an update taking place with the new updated details. The email being referred to as an undefined index relates to the senders email not the users or the noreply one used for system messages. (Could not specify version in Product Version drop down as 2.10.9 not available for selection.) |
||||
| Steps To Reproduce: | |||||
| Additional Information: |
Url as requested by error page: http://www.mydomain.co.uk/mails/?p=preferences&uid=75b57a477d66c172260e1b1730fa7596 [^] Sorry a software error occurred: Please report a bug when reporting the bug, please include URL and the entire content of this page. Notice: Undefined index: in /home/mydomain/public_html/myfolder/mails/admin/lib.php on line 316 phplist version 2.10.9 Sorry a software error occurred: Please report a bug when reporting the bug, please include URL and the entire content of this page. Notice: Undefined index: adminemail@mydomain.co.uk in /home/mydomain/public_html/myfolder/mails/admin/lib.php on line 316 phplist version 2.10.9 Thank you for your submission. We have updated your information. Sorry a software error occurred: Please report a bug when reporting the bug, please include URL and the entire content of this page. Notice: Undefined variable: emailchanged in /home/mydomain/public_html/myfolder/mails/admin/subscribelib2.php on line 583 phplist version 2.10.9 You will receive an email with the changes |
||||
| Attached Files: | |||||
| Notes | |||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15365 | [phplist] Documentation - Configuration | text | always | 12-11-09 13:02 | 12-11-09 13:02 |
|
|
|||||
| Reporter: | Thorsten Albrecht | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | 2.10.10 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | Wrong description of MAILQUEUE_BATCH_PERIOD in config file | ||||
| Description: |
The description of MAILQUEUE_BATCH_PERIOD is wrong. It says: "MAILQUEUE_BATCH_PERIOD define the length of one batch processing period, in seconds (3600 is an hour)" This is not true. Instead, it defines the waiting time between two batches. E.g., I am using the following settings: define("MAILQUEUE_BATCH_SIZE",10); define("MAILQUEUE_BATCH_PERIOD",1); What happens is that I am sending 10 mails per batch and the web interface waits for 1 second before reloading and sending the next 100 mails. Thorsten |
||||
| Steps To Reproduce: | |||||
| Additional Information: | |||||
| Attached Files: | batch-phpList_arrows.gif (40 KB) 12-11-09 13:02 | ||||
| There are no notes attached to this issue. |
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15363 | [phplist] HTML Email Support | minor | always | 11-11-09 19:11 | 12-11-09 10:47 |
|
|
|||||
| Reporter: | neffets | Platform: | Suse SLES10 | ||
| Assigned To: | OS: | Linux x64 | |||
| Priority: | normal | OS Version: | 2.2.10 | ||
| Status: | new | Product Version: | |||
| Product Build: | 2.2.10 | Resolution: | open | ||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | addAbsoluteResources does not / or fails in matching schema | ||||
| Description: |
function: addAbsoluteResources (lib.php line 533) the preg_match cannot match because "[x|y|z]" is used instead of "(x|y|z)" AND after this it matched (a failure) on links to if "http" are in the link anywhere. Imagine link: a href="/.bin/fwd.fcgi?http://www.b2b-deutschland.de/wirtschaftsnews/091110/duerftige-aussichten-fuer-arcandor-glaeubiger/index.php" [^] It matched, but should not. Result the url was not absolutized. Attended result for website=www.b2b-deutschland.de should be: a href="http://www.b2b-deutschland.de/.bin/fwd.fcgi?http://www.b2b-deutschland.de/wirtschaftsnews/091110/duerftige-aussichten-fuer-arcandor-glaeubiger/index.php" [^] Patch: |
||||
| Steps To Reproduce: |
Take a link with relative path for own link tracking and give it a parameter with a fully qualified uri. e.g. a href="http://www.b2b-deutschland.de/.bin/fwd.fcgi?http://www.b2b-deutschland.de/wirtschaftsnews/091110/duerftige-aussichten-fuer-arcandor-glaeubiger/index.php" [^] |
||||
| Additional Information: |
Patch lib.php 533c533 < if (preg_match("#[http|javascript|https|ftp|mailto]:#i",$match)) { --- > if (preg_match("#^(http|javascript|https|ftp|mailto):#i",$match)) { |
||||
| System Description | |||||
| Attached Files: | patch_sts1.diff (1 KB) 11-11-09 19:11 | ||||
| Notes | |||||
|
|
|||||
|
|
||||
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15364 | [phplist] Click Tracking | minor | always | 11-11-09 19:19 | 11-11-09 19:19 |
|
|
|||||
| Reporter: | scheidell | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | 2.10.10 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | minor issue with click tracking and anti-phishing software | ||||
| Description: |
many versions of anti-phishing , either plugins, or built into mail clients, or via anti-spam systems will see non-matching url's when the a href (the local, trackable url, the domain) doesn't match the one that you are actually directed to. I would not having the 'visible' url be the same as the real url. Without something, it makes phplist emails with click tracing on seem like spam or phishing emails. worse yet, would be if the target url (original one) was https. (reason I know alot about this, is we produce anti-spam products that include anti-phishing functions) |
||||
| Steps To Reproduce: | |||||
| Additional Information: | |||||
| Attached Files: | |||||
| There are no notes attached to this issue. |
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15362 | [phplist] Internationalization (l18n) | major | always | 10-11-09 11:51 | 10-11-09 11:51 |
|
|
|||||
| Reporter: | EdgarWahn | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | 2.10.10 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | overall handling of charsets | ||||
| Description: |
You can enter bits of text at several locations, ranging from config file (plain text email user name) to configuration (database). At no point (it seems) the charset of user input is been checked or converted to UTF-8. You might end up with a mixture of Charsets, depending on the browser settings of the PHPList users. Additionally PHPList does not send an content-type HTTP header containing charset information, which will produce bad output depending on the users browser settings. You really should send something like "content-type: text/plain; charset=utf-8". |
||||
| Steps To Reproduce: | |||||
| Additional Information: |
* check & convert every single bit of input by utilizing mb_detect_encoding or equivalent * generate content-type HTTP header containing a fixed charset (utf-8 preferred) * adapt the i18n language files (as they contain an charset header as well, they need to be converted to utf-8 (which could be done automatically as you know the sites charset and the translations charset => iconv)) |
||||
| Attached Files: | |||||
| There are no notes attached to this issue. |
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15361 | [phplist] Subscribe Process | minor | always | 08-11-09 12:13 | 08-11-09 12:13 |
|
|
|||||
| Reporter: | Subhash | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | 2.10.10 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | Attribut value is not saved | ||||
| Description: |
Havingh set an own table prefix the value of an attribute of the type select is not saved on subscription. The bug ist in "admin/commonlib/lib/userlib.php" from line 913 on. WRONG: $curval = Sql_Fetch_Row_Query(sprintf('select id from phplist_listattr_%s where name = "%s"',$atttable,$data["displayvalue"]),1); if (!$curval[0] && $data['displayvalue'] && $data['displayvalue'] != '') { Sql_Query(sprintf('insert into phplist_listattr_%s (name) values("%s")',$atttable, $data["displayvalue"])); RIGHT: $curval = Sql_Fetch_Row_Query(sprintf('select id from ' . $usertable_prefix . 'listattr_%s where name = "%s"',$atttable,$data["displayvalue"]),1); if (!$curval[0] && $data['displayvalue'] && $data['displayvalue'] != '') { Sql_Query(sprintf('insert into ' . $usertable_prefix . 'listattr_%s (name) values("%s")',$atttable, $data["displayvalue"])); |
||||
| Steps To Reproduce: | |||||
| Additional Information: | |||||
| Attached Files: | |||||
| There are no notes attached to this issue. |
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15309 | [phplist] Interface - Frontend | crash | always | 08-07-09 20:27 | 07-11-09 02:01 |
|
|
|||||
| Reporter: | flobee | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | assigned | Product Version: | |||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | get blacklisted and see the html output when tring to subscribe | ||||
| Description: |
crash because its visible and customer in bad mood! get blacklisted and see the html output when trying to subscribe to a list: dublicate html output. :-( v2.10.10 |
||||
| Steps To Reproduce: | |||||
| Additional Information: |
also: put css classes to input fields and a different to the submit input field to have a better controll for visual changes. customers nevver accept a standard way! if you need help commiting bugs-fixes to svn let me know. i will not put any reports, no time for extras, but i'm willed to help to make this app better. flobee |
||||
| Attached Files: |
demo.sql.gz (128 KB) 07-11-09 01:58 bug.png (105 KB) 07-11-09 02:01 |
||||
| Notes | |||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15357 | [phplist] Message Send Process | minor | have not tried | 28-10-09 18:16 | 06-11-09 18:35 |
|
|
|||||
| Reporter: | mike mckoy | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | 2.10.10 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | Develope Swift mailer pluggin that would allow phplist message sending to increase exponentionaly! | ||||
| Description: |
Wants to find out where we are with possibly creating a swift mailer pluggin to be added to the defaiult phplist plugin. I have a dedicated server I can donate to development. Swift mailer would allow load balancing between servers with phpmailer doesn't support. Load balancing would safely and effienctly increase phplist performance beyond 30,000 messages per hour. It may make things easier for those using shared hosting as well Some of Swift Mailer Features: * Send uses one single connection to the SMTP server or MTA * Doesn't rely on mail() * Custom Headers * Multiple encoding options * Unlimited redundant connections (can use mixed types too) * Connection rotating/load balancing * TLS Support - for Gmail servers * Embedded Images or other file types * Builds and sends Multipart messages * Sends single-part emails as usual * Fast Cc and Bcc handling * Unicode UTF-8 support, with auto-detection * Handles denied recipients in batch mailing whilst still delivering to the others * Optional auto-detection of SMTP or Sendmail settings * Batch emailing with multiple To's or without * Send to hundreds of thousands of addresses without cron * Support for multiple attachments * Protection against header injection * Set message priority * Request Read Receipts * Sendmail (or other binary) support * Pluggable SMTP Authentication (LOGIN, PLAIN, MD5-CRAM, POP Before SMTP) * Anti-Flooding support (reconnect every X emails) via plugin * Secure Socket Layer connections (SSL) * Loadable plugin support with event handling features |
||||
| Steps To Reproduce: | |||||
| Additional Information: |
I have a server i can dedicate to this. Runs CENTOS 5.3 64 bit 3GB of RAM Two athlon 4200 processors (2)250 gb drives in raid 1 |
||||
| Attached Files: | |||||
| Notes | |||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15360 | [phplist] Click Tracking | major | always | 05-11-09 13:22 | 05-11-09 13:22 |
|
|
|||||
| Reporter: | ramya123 | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | 2.10.10 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | Click Tracking is not working for links in the body of the message, only for those in the footer. | ||||
| Description: |
Hi, Click Tracking is not working for links in the body of the message, only for those in the footer i.e., for unsubsribe and Forward links. Any help would be appreciated. Thanks, Ramya |
||||
| Steps To Reproduce: | |||||
| Additional Information: | |||||
| Attached Files: | |||||
| There are no notes attached to this issue. |
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15345 | [phplist] Interface - Frontend | minor | always | 04-10-09 00:27 | 03-11-09 15:08 |
|
|
|||||
| Reporter: | lwc | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | 2.10.10 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | "phplist powered by phplist" in the admin pages. No version in the user pages. | ||||
| Description: |
The user pages display nothing after the word "version". If it's on purpose, the word "version" should be removed and the version number should be removed from the admin log-in page. The admin pages display "phplist powered by phplist". |
||||
| Steps To Reproduce: | |||||
| Additional Information: | |||||
| Attached Files: | |||||
| Notes | |||||
|
|
|||||
|
|
||||
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15325 | [phplist] Message Send Process | minor | have not tried | 01-09-09 22:08 | 01-11-09 17:42 |
|
|
|||||
| Reporter: | h2b2 | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | 2.10.10 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | SMTP code is partially broken (revisited) | ||||
| Description: |
cipixul reports that the code changes applied to "admin/class.phplistmailer.php" in order to fix issue 8590 can result in trouble: ===== Start Quote ===== The code is wrong because it uses PHPMAILERHOST only if the admin set phpmailer_user, which is not always the case, and as we run several smtpd servers on same machine, we don't authenticate to our smtpd instances because they're local. ===== End Quote ===== Source: http://forums.phplist.com/viewtopic.php?f=17&t=23830#p67628 [^] |
||||
| Steps To Reproduce: | |||||
| Additional Information: |
cipixul suggests the following changes to fix the issue: ===== Start Quote ===== The correct code which works in our case and in all other cases I can think of should be this one: if (defined('PHPMAILERHOST') && PHPMAILERHOST != '') { //logEvent('Sending authenticated email via '.PHPMAILERHOST); //$this->addCustomHeader("X-Mailer-Method: Dedicated SMTP"); $this->SMTPAuth = true; $this->Helo = getConfig("website"); $this->Host = PHPMAILERHOST; if ( isset($GLOBALS['phpmailer_smtpuser']) && $GLOBALS['phpmailer_smtpuser'] != '' && isset($GLOBALS['phpmailer_smtppassword']) && $GLOBALS['phpmailer_smtppassword'] ) { $this->Username = $GLOBALS['phpmailer_smtpuser']; $this->Password = $GLOBALS['phpmailer_smtppassword']; } $this->Mailer = "smtp"; } ===== End Quote ===== Related to: http://mantis.phplist.com/view.php?id=8590 [^] Related forum thread: http://forums.phplist.com/viewtopic.php?f=17&t=23830#p67628 [^] |
||||
| Attached Files: | |||||
| Notes | |||||
|
|
|||||
|
|
||||
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15291 | [phplist] Message Send Process | major | always | 15-05-09 02:28 | 01-11-09 17:23 |
|
|
|||||
| Reporter: | openside | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | 2.10.10 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | SMTP send won't work without authentication | ||||
| Description: |
Logic in constructor of class PHPlistMailer is wrong in the case of using SMTP. The offending code is: if (defined('PHPMAILERHOST') && PHPMAILERHOST != '') && isset($GLOBALS['phpmailer_smtpuser']) && $GLOBALS['phpmailer_smtpuser'] != '') { .... } SMTP will only be set if phpmailer_smtpuser has been set in the configuration. This precludes the use of SMTP servers which do not require authentication. The fix is simple and is left as an exercise for the maintainers. |
||||
| Steps To Reproduce: | |||||
| Additional Information: | |||||
| Attached Files: | |||||
| Notes | |||||
|
|
|||||
|
|
||||
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 740 | [phplist] HTML Email Support | feature | always | 29-10-03 10:03 | 31-10-09 20:36 |
|
|
|||||
| Reporter: | grantlairdjr | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | acknowledged | Product Version: | |||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | PHPList Archive | ||||
| Description: |
Guys, I've been using Mojo Mailing List since January and its been very good. I really like PHPList a lot but one thing it do not have is automatically archive on website. Wonder if they ever will upgrade PHPList with it in near future? Smile, gwlj |
||||
| Steps To Reproduce: | |||||
| Additional Information: | http://www.phplist.com/forums/viewtopic.php?p=877#877 [^] | ||||
| Attached Files: | archive.php (2 KB) 07-08-04 08:10 | ||||
| Notes | |||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15358 | [phplist] Subscriber Import | minor | always | 30-10-09 01:59 | 30-10-09 01:59 |
|
|
|||||
| Reporter: | crowdofone | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | 2.10.10 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | Import does not strip doublequote text delimiters when using 'import emails with the same values for attributes' | ||||
| Description: |
By default Openoffice Calc uses the text delimter " when exporting CSV files. When importing to phplist it appears not to remove these which results in email addresses that look like: "name@domain.com" instead of just: name@domain.com. The actual import itself goes fine but then later these doublequotes result in the addresses being regarded as invalid by phplist. Line 407 of importcsv.php includes the code: $line = str_replace('"', '', $line); For whatever reason - i am not a competent enough coder to work out what's happening here - the code above either doesn't get called or does not have the intended effect. As OpenOffice is a popular choice both for regular users and for those looking to convert xls files and export them as csv, i contend that this should just work without having to manually alter the text delimiter. I have twice seen this effect. First when importing a large number of email addresses and then secondly through exporting a CSV file consisting of just two email addresses in an attempt to replicate the behaviour. This appears consistent arcoss both 2.10.9 and 2.10.10. |
||||
| Steps To Reproduce: | |||||
| Additional Information: | |||||
| Attached Files: | |||||
| There are no notes attached to this issue. |
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15341 | [phplist] Interface - Frontend | major | always | 29-09-09 17:24 | 29-10-09 20:37 |
|
|
|||||
| Reporter: | dhartford | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | assigned | Product Version: | 2.10.10 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | security - forgotpassword value not checked/eval'd | ||||
| Description: |
/lists/admin when entering value to send an email for 'forgot password', the value is not checked. Fix included in additional info. |
||||
| Steps To Reproduce: | |||||
| Additional Information: |
/lists/admin/index.php, under the if isset($_REQUEST["forgotpassword"]).... #====php 5.1.6 tested fix - filter_var only works on installs with php > 5.2 $parsedforgotpassword = $_REQUEST["forgotpassword"]; $email_regex = '^[a-zA-Z0-9._-]+@[a-zA-Z0-9._-]+\.([a-zA-Z]{2,4})$'; if(!eregi($email_regex, $parsedforgotpassword)){ logEvent(sprintf('Invalid forgotpassword email entered from %s.', $_SERVER['REMOTE_ADDR'])); $page="login"; $msg="invalid email supplied"; }else{ ....normal code.... } #end of email validation check |
||||
| Attached Files: | |||||
| There are no notes attached to this issue. |
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15349 | [phplist] User Management | major | always | 09-10-09 09:32 | 29-10-09 20:34 |
|
|
|||||
| Reporter: | lwc | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | assigned | Product Version: | 2.10.10 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | Need stripslashes when displaying and/or searcing for user attributes | ||||
| Description: |
Just like http://mantis.phplist.com/view.php?id=1152 [^] only for user attributes. This is relevant for: 1) The usage of [attribute] in messages. 2) Searching by attribute in the list of users. 3) Displaying the search result of searching by attribute in the list of users 4) The user's preferences page 5) The admin's edit screen of individual users. Things like such users are being unsearchable (by the relevant attribute) - even if you use slash in your search - is why I classified it as a major error. |
||||
| Steps To Reproduce: | |||||
| Additional Information: | |||||
| Attached Files: | |||||
| There are no notes attached to this issue. |
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15188 | [phplist] Interface - Backend | major | always | 07-11-08 16:56 | 29-10-09 17:23 |
|
|
|||||
| Reporter: | anthropos9 | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | resolved | Product Version: | 2.10.7 | ||
| Product Build: | Resolution: | unable to reproduce | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | PHP Error | ||||
| Description: |
On the bottom of lists/admin/ along with several other admin pages I get this error message: Notice: ob_end_flush() [ref.outcontrol]: failed to delete and flush buffer. No buffer to delete or flush. in /nfs/c02/h03/mnt/27557/domains/puyallup-tribe.com/html/mail/lists/admin/index.php on line 409 phplist version 2.10.7 |
||||
| Steps To Reproduce: | |||||
| Additional Information: |
My System Info: PHP Version 5.2.6 System Linux cl04 2.6.20.2-1 #8 SMP Tue Feb 12 07:11:48 PST 2008 i686 Configure Command './configure' '--prefix=/usr/local/php-5.2.6-1' '--enable-cli' '--enable-cgi' '--enable-fastcgi' '--disable-debug' '--disable-rpath' '--disable-static' '--with-pic' '--with-openssl=/usr' '--enable-bcmath' '--with-bz2' '--enable-calendar' '--enable-ctype' '--with-curl' '--with-db4' '--with-zlib-dir=/usr' '--with-xsl' '--enable-exif' '--enable-ftp' '--with-gd' '--enable-gd-native-ttf' '--with-ttf' '--with-jpeg-dir=/usr' '--with-png-dir=/usr' '--with-freetype-dir=/usr' '--with-gettext' '--with-iconv' '--with-imap' '--with-kerberos=/usr' '--with-imap-ssl=/usr' '--enable-mbstring' '--with-mcrypt' '--with-mhash' '--with-mime-magic=/usr/share/misc/file/magic.mime' '--with-mysql=/usr/bin/mysql_config' '--with-pcre-regex=/usr' '--with-pgsql' '--with-pspell=/usr' '--enable-sockets' '--enable-wddx' '--with-xmlrpc' '--with-zlib=/usr' '--with-pear' '--with-layout=GNU' '--with-ldap' '--with-sqlite' '--with-mysqli=/usr/bin/mysql_config' '--enable-pdo' '--with-pdo-mysql=/usr' '--with-pdo-pgsql=/usr' '--enable-pdo' '--with-pdo-mysql=/usr' '--with-pdo-pgsql=/usr' '--enable-soap' Server API CGI/FastCGI MySQL Version: 4.1.11 |
||||
| Attached Files: | |||||
| Notes | |||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15300 | [phplist] Subscribe Process | major | always | 02-06-09 15:20 | 29-10-09 17:21 |
|
|
|||||
| Reporter: | spiro | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | assigned | Product Version: | 2.10.10 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | Resubscribing previous user (i.e. blacklisted) | ||||
| Description: |
There are two possibilities with this depending on whether users are required to use a password. config.php define("ASKFORPASSWORD",0); With the above setting in config it still only works if a fix that I found in the forum is applied to the admin/subscribelib2.php around line 365 under "if ($blacklisted) {" rem out "return 1". This then allows the new subscription to send out the request for confirmation email and once the url in that is clicked the user is removed from being blacklisted. With the ASKFORPASSWORD set to 1, when someone tries to resubscribe the subscription page asks for a password to be created and then reconfirmed as with any user trying to subscribe with the password option switched on. However, instead of the system updating the password with the new one from this registration as it does with the rest of the user details being resubscribed, it reloads the subscribe page stating that the email already exists with a different password, breaking the resubscription process unless the user knows or requests their old password. It would be cleaner if whatever password they chose upon attempting to resubscribe was taken as their new data as it does with other attributes from the subscribe page. |
||||
| Steps To Reproduce: | |||||
| Additional Information: | |||||
| Attached Files: | |||||
| Notes | |||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15350 | [phplist] Installation | block | have not tried | 14-10-09 05:18 | 29-10-09 17:17 |
|
|
|||||
| Reporter: | LouiseB | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | feedback | Product Version: | 2.10.10 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | "Send Message" screen is incomplete | ||||
| Description: |
I am using IE 8, and am experiencing the same problem that was reported in issue # 004030. I can see the full screen in your demo, but not in the version I have installed. It was installed using Fantastico and I haven't changed any default config settings. |
||||
| Steps To Reproduce: | |||||
| Additional Information: | |||||
| Attached Files: | |||||
| Notes | |||||
|
|
|||||
|
|
||||
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15351 | [phplist] Installation | major | always | 20-10-09 20:14 | 29-10-09 17:15 |
|
|
|||||
| Reporter: | shez001 | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | resolved | Product Version: | 2.10.10 | ||
| Product Build: | Resolution: | no change required | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | Bug in MySql installation script of PHPList | ||||
| Description: |
After installing PHPList on server and going through the admin panel I noticed that I was receiving errors such as table does not exist. This was very strange so I decided to do some further investigation. Findings: On line number 1087 in the phplist.sql: INSERT INTO `phplist_user_blacklist_data` VALUES ('billgates@microsoft.com','reason','I\\\'m not really that interested in your newsletter anymore. Sorry.'); This is not correct as the \\\ in the query escapes the rest of the sql and the remaining tables are not executed this results in a broken installation. The correct sql is: INSERT INTO `phplist_user_blacklist_data` VALUES ('billgates@microsoft.com','reason','I\'m not really that interested in your newsletter anymore. Sorry.'); After doing this fix and adding the tables below this line number everything worked perfectly. |
||||
| Steps To Reproduce: | |||||
| Additional Information: | |||||
| Attached Files: | |||||
| Notes | |||||
|
|
|||||
|
|
||||
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15029 | [phplist] Authentication System | tweak | always | 11-06-08 14:43 | 29-10-09 02:54 |
|
|
|||||
| Reporter: | Antonimo | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | 2.10.5 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | Identical Cookies allow login to multiple installations | ||||
| Description: |
I have two installations of PHPList on the same domain. The first installation is in a sub-directory of the root called "lists" and the second is in a sub-directory called "subscribe". Each installation uses its own database. Each installation has different log on details for the admin. I have tried to log in to each installation using the other's username and password and I cannot log in. However, once I am logged in, I can substitute the word "lists" for "subscribe" in the URL and get in to the other installation. As the login is stored in a cookie on my browser, I suspect that this is were the problem is. In fact, I cleared out all cookies then logged in to the first installation - then I opened another browser window to access the second installation. Monitoring the cookies I see that there is only one. When I delete this cookie, I am logged out of both installations. The serious problem is that logging in to one installation should not give access to the second installation. The cookie name is PHPSESSID (the default session name) Should the cookie prefix be determined in the configuration file? |
||||
| Steps To Reproduce: | |||||
| Additional Information: | |||||
| Attached Files: | |||||
| Notes | |||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15356 | [phplist] All Other | minor | have not tried | 28-10-09 17:09 | 28-10-09 17:09 |
|
|
|||||
| Reporter: | Larry Douglas | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | 2.10.5 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | Is there a way to export admins? | ||||
| Description: | Is there a way to export admins? | ||||
| Steps To Reproduce: | |||||
| Additional Information: | |||||
| Attached Files: | |||||
| There are no notes attached to this issue. |
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15355 | [phplist] RSS | minor | always | 26-10-09 18:20 | 26-10-09 18:20 |
|
|
|||||
| Reporter: | metropolitan | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | 2.10.10 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | New subscribers to RSS list digests get RSS items older than the digest time interval | ||||
| Description: |
To quote user "alanf", "When running an RSS e-mail with daily frequency, and another with monthly, I need to keep at least 1 months worth of RSS data on the database. If a NEW user subscribes to the list as 'daily', on the first day the new user will get everything held on the RSS tables on the first e-mail, as nothing has been flagged as being sent to that user. In an ideal world, when a new user subscribes to a daily list, the RSS table would be flagged to excluded everything over a day old for that user, son on the first e-mail they get just the recent RSS data (and the same logic for weeky / monthly )" I would add it may appear like a trivial problem because it only affects new subscribers... except that if you are setting up PHPlist for the first time, and you are importing a list of 10,000 people, and you have a number of RSS feeds that go back a year, suddenly it is not a trivial issue because it will affect 10,000 people. |
||||
| Steps To Reproduce: | |||||
| Additional Information: |
Alan's post: http://forums.phplist.com/viewtopic.php?f=17&t=25903&p=69360#p69360 [^] Another report of this same problem: http://forums.phplist.com/viewtopic.php?f=15&t=24458#p67778 [^] |
||||
| Attached Files: | |||||
| There are no notes attached to this issue. |
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15354 | [phplist] Interface - Backend | minor | always | 23-10-09 09:24 | 23-10-09 09:24 |
|
|
|||||
| Reporter: | tuxick | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | |||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | no default language for admin interface | ||||
| Description: |
i don't see how to set default language for the admin interface. ideally all admin users should be able to set one, but a good start would be setting one in config.php. |
||||
| Steps To Reproduce: | |||||
| Additional Information: | |||||
| Attached Files: | |||||
| There are no notes attached to this issue. |
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15353 | [phplist] All Other | feature | random | 23-10-09 03:28 | 23-10-09 03:28 |
|
|
|||||
| Reporter: | weiwei | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | |||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | Receive unsubscribe notification from phplist without clicking unsubscribe link | ||||
| Description: |
One of my colleagues received the unsubscribe notification from PHPlist, but she never click on any unsubscribe link from the email. Please advice. |
||||
| Steps To Reproduce: | |||||
| Additional Information: | |||||
| Attached Files: | |||||
| There are no notes attached to this issue. |
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15352 | [phplist] User Management | minor | always | 22-10-09 09:30 | 22-10-09 09:30 |
|
|
|||||
| Reporter: | titobrasolin | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | 2.10.9 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | Sort by 'entered' and 'modified' not working on page 'users' | ||||
| Description: |
The error is: "Database error 1052 while doing query Column 'entered' in order clause is ambiguous" Looks like it happens only with MySQL 5.0.51 (we have phplists 2.10.9 on MySQL 5.0.41 works fine) =Suggested fix= file: admin/commonlib/pages/users.php line 272: change $order = ' order by ' . $sortby; into $order = ' order by ' . "{$tables["user"]}.$sortby"; |
||||
| Steps To Reproduce: | |||||
| Additional Information: | |||||
| Attached Files: | |||||
| There are no notes attached to this issue. |
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15287 | [phplist] Message Management | minor | sometimes | 12-05-09 23:28 | 21-10-09 03:21 |
|
|
|||||
| Reporter: | h2b2 | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | 2.10.10 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | v2.10.10: FCKeditor doesn't load when opening the 'send a message' page. | ||||
| Description: |
Several users reported FCKeditor didn't load when opening the 'send a message' page. taydeko found the issue is caused by a couple of code lines in send_core.php ==== START QUOTE ===== On line 1034 and 1040 are: //value="'.htmlentities(iconv('ISO-8859-1','UTF-8',$subject),ENT_QUOTES,'UTF-8').'" size=40></td></tr> value="'.htmlentities(iconv('ISO-8859-1','UTF-8',$from),ENT_QUOTES,'UTF-8').'" size=40></td></tr> I am not sure why 1034 is commented out, but if you replace 1034 with the contents of 1023 without the comment, and replace 1040 with 1024 without the comment, the program works fine for me. So it looks like something is causing a problem in the "iconv('ISO-8859-1','UTF-8',$from)" bit of code. ==== START QUOTE ===== Source: http://forums.phplist.com/viewtopic.php?f=17&t=24501#p61969 [^] |
||||
| Steps To Reproduce: | |||||
| Additional Information: |
The issue occurred on a system with $strCharSet=ISO-8859-1 and the following database settings: character_set_client: utf8 character_set_connection: utf8 character_set_database: latin1 character_set_filesystem: binary character_set_results: utf8 character_set_server: latin1 character_set_system: utf8 I couldn't reproduce this issue on my system which is fully configured for UTF-8 (see notes 0050565 and 0050579 of mantis issue 1644). SOME REMARKS: It seems to me the code changes made to fix issue http://mantis.phplist.com/view.php?id=15241 [^] have introduced the current issue. It is unclear to me why line 1034 has been disabled (commented), nor can I check on my system whether just uncommenting line 1034 would solve this issue. I wonder whether the use of iconv -as in: htmlentities(iconv('ISO-8859-1','UTF-8',$subject) - wouldn't result in more trouble than it solves, for instance if someone would be using another admin page encoding than ISO-8859-1, like ISO-8859-7 which is used in greec.inc. I also wonder whether hardcoding charsets is the best way to go. Please see my notes on this topic in http://mantis.phplist.com/view.php?id=1644 [^] |
||||
| Attached Files: | |||||
| Notes | |||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 9816 | [phplist] Authentication System | feature | always | 23-04-07 05:25 | 20-10-09 16:51 |
|
|
|||||
| Reporter: | bpeabody | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | 2.10.4 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | LDAP Authentication Patch | ||||
| Description: |
here is a patch for using LDAP as the backend for authentication of phplist admin users. it has support for two different types of admin accounts: a) everyone who matches the criteria you specify in your config is automatically an admin, with the records in the database being created as the user logs in the first time, b) everyone who matches your criteria is a potential admin, but only those who already have an admin record in the phplist database are able to log in. you can use one or both of these methods at the same time. the text file in the attached package contains more info. feedback is welcome |
||||
| Steps To Reproduce: | |||||
| Additional Information: | |||||
| Attached Files: |
phplist-ldap-0.1.patch (11 KB) 23-04-07 05:25 phplist-ldap-0.1.txt (5 KB) 23-04-07 05:26 phplist-ldap-0.1a.patch (12 KB) 16-08-07 22:37 |
||||
| Notes | |||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 5184 | [phplist] All Other | feature | always | 08-01-06 06:06 | 15-10-09 10:14 |
|
|
|||||
| Reporter: | foundsecrets | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | 2.10.2 | ||
| Product Build: | Resolution: | open | |||
| Projection: | minor fix | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | manual blacklisting | ||||
| Description: |
I'm sure you are sick to death of the blacklisting question, but it seems to me that it would be nice, if like on Horde, you had a specific blacklisting feature, rather than one that blacklists all those who unsubscribe. I know that I like many other webmasters often have to blacklist AOL members just to be able to keep our webhosts, and then there are those subscribers who have abused our list. Just a thought! |
||||
| Steps To Reproduce: | |||||
| Additional Information: | |||||
| Attached Files: | |||||
| Notes | |||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 4041 | [phplist] Subscribe Process | feature | always | 15-09-05 01:54 | 15-10-09 10:11 |
|
|
|||||
| Reporter: | michiel | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | 2.10.1 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | add disallowing of signing up with certain domains | ||||
| Description: |
as discussed here, http://www.phplist.com/forums/viewtopic.php?t=3402 [^] it could be useful to allow adding a list of domains that are stopped from being used for subscribing. It could possibly be extended to blocking entire IP addresses/ranges. |
||||
| Steps To Reproduce: | |||||
| Additional Information: | |||||
| Attached Files: | |||||
| Notes | |||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15176 | [phplist] User Management | feature | N/A | 30-08-08 09:03 | 07-10-09 11:33 |
|
|
|||||
| Reporter: | user4321 | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | CVS | ||
| Product Build: | Resolution: | open | |||
| Projection: | tweak | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | Feature request - Administrator to be able to approve new subscribers | ||||
| Description: |
For some private mailing lists it would be useful to have list manager approval once the email address had been confirmed. One way to achieve this would be for a duplicate of the opt-in message to be sent to the list manager containing all the details and comments for each new subscriber enabling the list manager to authorize individuals after confirming identity. It would work best for lists with a low turnover like clubs and other organizations. |
||||
| Steps To Reproduce: | |||||
| Additional Information: |
An alternative mechanism would be to have the ability to sent the opt-in confirmation email to the list manager every time instead of to the subscriber. For the type of mailing list I want there would be little point in subscribing someone maliciously. The rest of the info provided from the subscription page should be sufficient to identify legitimate new subscribers. This I would be less ideal as a miss-typed email address would not be picked up but would be easier to implement. |
||||
| Attached Files: | |||||
| Notes | |||||
|
|
|||||
|
|
||||
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15348 | [phplist] Subscribe Process | feature | always | 07-10-09 11:32 | 07-10-09 11:32 |
|
|
|||||
| Reporter: | lwc | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | 2.10.10 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | Allow admin to approve unsubscribers | ||||
| Description: | Like http://mantis.phplist.com/view.php?id=15176 [^] but for unsubscribers. Those who need such a thing probably don't currently provide an unsubscribe link in their messages at all, so it would be an improvement for them. | ||||
| Steps To Reproduce: | |||||
| Additional Information: | |||||
| Attached Files: | |||||
| There are no notes attached to this issue. |
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15337 | [phplist] Subscribe Process | major | always | 20-09-09 16:46 | 07-10-09 11:12 |
|
|
|||||
| Reporter: | lwc | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | 2.10.10 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | The subscribe page lets anyone change anyone's details by "re-subscribing" | ||||
| Description: |
You can bypass the requirement to know your personal key ID in order to change preferences, if you just enter an existing e-mail address in the regulsr subscribe form. True, it's only partial as you can't change selectable options, only adding to them. Obviously you also can't change your e-mail address (as the whole trick relies on using an existing one). That is, anyone can enter your e-mail address and supply new text attributes. Suddenly you find your details contain a different name, town, etc. But if you're listed in list #1 and list #2, if someone enters your e-mail address and lists you only in list #3, it makes you subscribe to #3 in addition to #1 and #2, not instead. |
||||
| Steps To Reproduce: | |||||
| Additional Information: |
The direct solution is not to allow entering an existing e-mail address in the subscribe page. Existing e-mail addresses should only be used in the preferences' page. Alternatively, notify the admin about it (like what happens now) but actually let them decide - "someone entered an existing e-mail address in the subscribe page. The following changed (or not) attributes will NOT be approved, unless you click the following link." But this would require two attributes for each attribute - a current one and a waiting-to-be-confirmed one. |
||||
| Attached Files: | |||||
| Notes | |||||
|
|
|||||
|
|
||||
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15326 | [phplist] Interface - Frontend | tweak | always | 03-09-09 15:59 | 07-10-09 11:09 |
|
|
|||||
| Reporter: | lwc | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | 2.10.10 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | "X bounces" in the "View Bounces" page should renamed to "X unidentified bounces" | ||||
| Description: | Otherwise one has to figure out on their own what it means. | ||||
| Steps To Reproduce: | |||||
| Additional Information: | |||||
| Attached Files: | |||||
| Notes | |||||
|
|
|||||
|
|
||||
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15160 | [phplist] Internationalization (l18n) | feature | always | 21-07-08 12:08 | 07-10-09 11:05 |
|
|
|||||
| Reporter: | nadavkav | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | internationalization | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | new utf-8 hebrew translation | ||||
| Description: |
i have converted the current hebrew translation which was encoded windows-1255 to unicode utf-8. a file is attached. i changed the name in case someone needs the old translation which only works on Windows(tm) platforms. (bad) |
||||
| Steps To Reproduce: | |||||
| Additional Information: | |||||
| Attached Files: |
hebrew-utf8.inc (8 KB) 21-07-08 12:08 hebrew.inc (8 KB) 05-05-09 11:08 hebrew-20090825.inc (12 KB) 31-08-09 13:14 hebrew-20091004.inc (12 KB) 04-10-09 00:29 hebrew-20091007.inc (12 KB) 07-10-09 11:05 |
||||
| Notes | |||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15284 | [phplist] User Management | minor | always | 12-05-09 00:37 | 06-10-09 16:07 |
|
|
|||||
| Reporter: | h2b2 | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | 2.10.10 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | v2.10.10: Delete attribute and Merge attribute feature does not seem to be working | ||||
| Description: |
On the 'configure attributes' page (lists/admin/?page=attributes), deleting or merging attributes has no effect. . |
||||
| Steps To Reproduce: | |||||
| Additional Information: |
Issue reported by postmanpat: http://forums.phplist.com/viewtopic.php?f=17&t=24502&start=0 [^] Confirmed on my system: phplist 2.10.9 Linux/Apache PHP 5.2.3 MySQL 4.1.12 |
||||
| Attached Files: | |||||
| Notes | |||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15347 | [phplist] Internationalization (l18n) | feature | N/A | 05-10-09 15:32 | 05-10-09 15:32 |
|
|
|||||
| Reporter: | sooskriszta | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | internationalization | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | Hungarian front end | ||||
| Description: | Please find text file attached. | ||||
| Steps To Reproduce: | |||||
| Additional Information: | |||||
| Attached Files: | hungarian.inc (8 KB) 05-10-09 15:32 | ||||
| There are no notes attached to this issue. |
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15346 | [phplist] Internationalization (l18n) | feature | have not tried | 05-10-09 04:39 | 05-10-09 04:40 |
|
|
|||||
| Reporter: | h2b2 | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | 2.10.10 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | Italian backend translation | ||||
| Description: |
The v2.10.10 backend translation was made available by andypanix in this forum thread: http://forums.phplist.com/viewtopic.php?f=19&t=13780&p=68726#p68672 [^] |
||||
| Steps To Reproduce: | |||||
| Additional Information: | |||||
| Attached Files: | phplist_ita_02-10-09.tgz (47 KB) 05-10-09 04:40 | ||||
| There are no notes attached to this issue. |
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 13508 | [phplist] Internationalization (l18n) | minor | have not tried | 28-02-08 12:59 | 05-10-09 04:28 |
|
|
|||||
| Reporter: | bas | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | |||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | Arabic translation | ||||
| Description: |
Hello, I have completed the Arabic translation My regards... Khaled al-Horani <koko.dw@gmail.com> |
||||
| Steps To Reproduce: | |||||
| Additional Information: | |||||
| Attached Files: |
arabic.inc (7 KB) 28-02-08 12:59 arabic_utf8.inc (13 KB) 05-10-09 04:24 |
||||
| Notes | |||||
|
|
|||||
|
|
||||
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15290 | [phplist] Subscribe Process | minor | always | 14-05-09 07:43 | 04-10-09 07:28 |
|
|
|||||
| Reporter: | h2b2 | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | 2.10.10 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | v2.10.10 - Second subscribe window appearing when re-subscribing a previously unsubscribed user | ||||
| Description: |
If a previously unsubscribed user attempts to re-subscribe, a second window is displayed over the first. This issue has been reported in http://forums.phplist.com/viewtopic.php?f=15&t=24579#p62107 [^] Confirmed on my system - |
||||
| Steps To Reproduce: | |||||
| Additional Information: |
This issue was previously reported for v.2.10.8 and 2.10.9, and was flagged as fixed in v2.10.10. See http://mantis.phplist.com/view.php?id=15240 [^] See also: http://forums.phplist.com/viewtopic.php?p=58635#p58635 [^] My system info: phplist 2.10.10 Linux/Apache PHP 5.2.3 MySQL 4.1.12 |
||||
| Attached Files: | second_window_bug_patch.zip (1 KB) 04-10-09 07:27 | ||||
| Notes | |||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15344 | [phplist] Message Send Process | minor | always | 02-10-09 16:38 | 02-10-09 16:38 |
|
|
|||||
| Reporter: | djpauze | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | 2.10.10 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | Error when sending test Message | ||||
| Description: | Database error 1064 while doing query You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ') and user_user_attribute.attributeid = 10' at line 4 | ||||
| Steps To Reproduce: | |||||
| Additional Information: | It seems that the message still goes through! My level of expertise in SQL and php is not very high so I havent been able to figure out the route of the problem. I do however get this message anytime I send a test message in phplist. | ||||
| Attached Files: | |||||
| There are no notes attached to this issue. |
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 6275 | [phplist] All Other | minor | always | 30-04-06 19:34 | 01-10-09 18:00 |
|
|
|||||
| Reporter: | dhutton | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | feedback | Product Version: | 2.10.2 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | False warnings during test import with 'import emails with different values for attributes' | ||||
| Description: |
This is the problem reported in 0003603, which still occurs in latest version. When using the function 'import emails with different values for attributes' the warning message is always displayed (if the 'show warnings' box is checked: "Warning: Record has more values than header indicated (30!=28), this may cause trouble" PHP version: 4.4.2 |
||||
| Steps To Reproduce: | |||||
| Additional Information: | |||||
| Attached Files: | |||||
| Notes | |||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15343 | [phplist] Interface - Frontend | major | always | 29-09-09 17:31 | 29-09-09 17:31 |
|
|
|||||
| Reporter: | dhartford | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | |||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | Directory Listing - application can prevent | ||||
| Description: |
Although Apache/Zend can be configured to prevent Directory Listings, sometimes best to make a best effort that the PHPList application is safe/secure as much as possible without relying on external configurations. Recommend add 'index.html' (even if blank), or similar page to all directories to avoid directory listings. /lists/config /lists/images /lists/images/smiley /lists/js /lists/styles /lists/texts /lists/admin/auth /lists/admin/data /lists/admin/images /lists/admin/images/tabs/ /lists/admin/js /lists/admin/onyxrss /lists/admin/phpmailer /lists/admin/phpmailer/language /lists/admin/plugins /lists/admin/plugins/defaultplugin /lists/admin/plugins/sidebar /lists/admin/styles/ /lists/admin/info/* These have a lot of subdirectories: /lists/admin/commonlib /lists/admin/FCKeditor /lists/admin/lan |
||||
| Steps To Reproduce: | |||||
| Additional Information: | |||||
| Attached Files: | |||||
| There are no notes attached to this issue. |
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15342 | [phplist] Interface - Frontend | minor | always | 29-09-09 17:28 | 29-09-09 17:28 |
|
|
|||||
| Reporter: | dhartford | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | 2.10.10 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | Password field does not have autocomplete explicitly set | ||||
| Description: |
Password field should have autocomplete explicitly set to off for security reasons. Note that it is a convenience to have it on, but should identify the intent of the PHPlist default install. /lists/admin/login.php: <tr><td><input type=password name="password" value="" autocomplete="off" size=30></td></tr> |
||||
| Steps To Reproduce: | |||||
| Additional Information: | |||||
| Attached Files: | |||||
| There are no notes attached to this issue. |
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15340 | [phplist] Interface - Frontend | minor | always | 28-09-09 15:23 | 28-09-09 15:23 |
|
|
|||||
| Reporter: | tuxick | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | 2.10.10 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | allows setting empty email address | ||||
| Description: |
the interface does not check if an email address is empty. this at least happens in the "details of a user" dialog, and probably elsewhere since i found an empty email adress in database. some validation might be useful :) |
||||
| Steps To Reproduce: | |||||
| Additional Information: | |||||
| Attached Files: | |||||
| There are no notes attached to this issue. |
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15338 | [phplist] Attachments | major | have not tried | 26-09-09 23:20 | 28-09-09 14:27 |
|
|
|||||
| Reporter: | buster | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | 2.10.10 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | cgi error | ||||
| Description: |
ver 2.10.10 pretty much installed without a hitch. The error: The specified CGI application misbehaved by not returning a complete set of HTTP headers. This happens when trying to open an attachment link. This message contains attachments that can be viewed with a webbrowser: Location: http://www.waynestreetumc.org/lists/dl.php?id=3 [^] |
||||
| Steps To Reproduce: | |||||
| Additional Information: |
My system details are: phplist version: 2.10.10 PHP version: 5.2.10 Browser: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 2.0.50727; InfoPath.1; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) Webserver: Microsoft-IIS/6.0 Website: http://www.waynestreetumc.org/lists [^] Mysql Info: 5.0.45-log PHP Modules: bcmath calendar com_dotnet ctype date filter ftp hash iconv json odbc pcre Reflection session libxml standard tokenizer zlib SimpleXML dom SPL wddx xml xmlreader xmlwriter cgi-fcgi curl gd gettext mcrypt mhash mime_magic mssql mysql mysqli openssl sockets tidy xsl ionCube Loader Zend Optimizer |
||||
| Attached Files: | ie7phplisterror.rtf (615 KB) 28-09-09 14:26 | ||||
| Notes | |||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15339 | [phplist] User Management | feature | always | 27-09-09 07:23 | 27-09-09 07:23 |
|
|
|||||
| Reporter: | lwc | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | 2.10.10 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | Please add a "reason" field for unconfirmed users and not just for blacklisted ones | ||||
| Description: |
Currently only blacklisted users have a "reason" field. In the long run, I have no idea if a certain user became unconfirmed over time for overquota reasons or for the address actually being wrong. It means I can't be sure if I should give such users another chance at some point. So please add a "reason" field for unconfirmed users as well. |
||||
| Steps To Reproduce: | |||||
| Additional Information: | |||||
| Attached Files: | |||||
| There are no notes attached to this issue. |
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15336 | [phplist] Attachments | major | always | 18-09-09 12:51 | 22-09-09 11:24 |
|
|
|||||
| Reporter: | cazzani | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | 2.10.10 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | when processing queues PHPlist does not attach the file uploaded, it attaches the file only in test messages | ||||
| Description: |
I can regularly upload the file during message preparation and when I send me a test message, I receive it correctly. However, when the same message is queued for delivery, no attachments is being sent. Messages are received without attachments and as administrator I receive error messages stating: Error, when trying to send message xx the attachment yyyyy could not be found |
||||
| Steps To Reproduce: | |||||
| Additional Information: |
PHPList 2.10.10 running on Linux centos-5-x86 virtual machine. Sequence of event I tried: - I uploaded the file to be attached: 0803_NI_DAQ_USB_6821.gif - I checked it is the correct attachments repository configured, diectory /tmp, outside the web space, which has the following permission: tmp <dir> Sep 18, 2009 02:04:52 PM drwxrwxrwt root root - Two files are actually there created by PHPlist after upload: 0803_NI_DAQ_USB_68219EnYwd 0.00 kb Sep 18, 2009 02:04:52 PM -rw------- apache apache 0803_NI_DAQ_USB_68219EnYwd.gif 12.22 kb Sep 18, 2009 02:04:52 PM -rw-r--r-- apache apache - I noticed that PHPlist web space is using in using a different account: admin.php 8.95 kb Jun 19, 2009 11:42:24 AM -rw-r--r-- joomlaftp psacln I therefore thought that some permissione problem could be an issue, so I tried to set CHMOD 777 on the two files uploaded, but the end result is still the same: file is attached in test messages, but when queued it is not attached and I get the message: Error, when trying to send message 58 the attachment 0803_NI_DAQ_USB_6821.gif could not be found |
||||
| Attached Files: | |||||
| Notes | |||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15335 | [phplist] All Other | major | always | 13-09-09 10:57 | 13-09-09 10:57 |
|
|
|||||
| Reporter: | holger | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | 2.10.10 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | Text-Mail with Code | ||||
| Description: |
Hello, i have a Problem with the Version 2.10.10 with text-mails. I have test convert html-message to text and entry text-message in the text-box i have the problem that die text-message are send with html-code like this: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> [^] <html> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <title>Newsletter - DLRG Ortsgruppe Altbach </title> </head> <body> <table border="0" cellspacing="0" cellpadding="0" width="611"> <tr valign="top"> <td><img src="header_left.gif" height="204" width="19" border="0"></td> <td><img src="header_right.gif" height="204" width="592" border="0"></td> </tr> <tr valign="top"> <td width="19"></td> <td style="padding: 10px 10px 10px 20px; font-family: Arial,Helvetica,sans-serif; font-size: 12px; line-height: 16px;" bgcolor="#ebf2f5"> <p align="center" style="font-family: Arial,Helvetica,sans-serif; font-size: 10px;color:gray;">(Falls Sie diesen Newsletter nicht lesen können, klicken Sie bitte http://newsletter.dlrg-altbach.de/archiv.php?x=128.) [^] Hallo Holger Schuker,
heute geht es wieder los bei der DLRG Ortsgruppe Altbach mit dem Falls Sie diese doch nicht mehr wissen sollten schauen Sie einfach hier <h3>Umfrage Newsletter</h3> Unser Newsletter besteht nun seit mehr als 6 Monaten und wir würden <a border="0" target="_blank" oder kopieren folgende URL: <span style="font-size: xx-small;"><strong>Eine Bemerkung zum Ihre <hr> <div style="font-family: Arial,Helvetica,sans-serif; font-size: 10px;color:gray;"> Newsletteroptionen: Abmelden: http://newsletter.dlrg-altbach.de/?p=unsubscribe&uid=c77fe9412979e4cf509503cf7e5d90a0 [^] Newsletter weiterleiten: http://newsletter.dlrg-altbach.de/?p=forward&uid=c77fe9412979e4cf509503cf7e5d90a0&mid=128 [^] Daten ändern: http://newsletter.dlrg-altbach.de/?p=preferences&uid=c77fe9412979e4cf509503cf7e5d90a0 [^] </div> </td> </tr> <tr valign="top"> <td width="19"></td> <td><img src="footer.gif" height="44" width="592" border="0"></td> </tr> </table> </body> </html> -- Powered by PHPlist, www.phplist.com -- |
||||
| Steps To Reproduce: | |||||
| Additional Information: | |||||
| Attached Files: | |||||
| There are no notes attached to this issue. |
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 5921 | [phplist] Subscriber Import | minor | have not tried | 30-03-06 14:13 | 10-09-09 19:38 |
|
|
|||||
| Reporter: | yan | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | feedback | Product Version: | 2.10.1 | ||
| Product Build: | Resolution: | unable to reproduce | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | selecting values in checkbox attribute during import doesn't work | ||||
| Description: | you're supposed to be able to select a value in a checkbox attribute which you want all your imported subscribers to have. It doesn't work. | ||||
| Steps To Reproduce: | |||||
| Additional Information: | |||||
| Attached Files: | importcsv.zip (10 KB) 14-12-08 13:24 | ||||
| Notes | |||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15334 | [phplist] User Management | major | sometimes | 10-09-09 15:10 | 10-09-09 15:10 |
|
|
|||||
| Reporter: | Danail Traichev | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | 2.10.10 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | When user requests personal URL for changing its preferences, wrong uid is sent to user, so he cannot change them | ||||
| Description: |
With some users (for example with one that was added by admin without confirmation email), when user requests personal URL for changing its preferences, email is sent, but the URL in it contains wrong uid, so user cannot change its settings never. For example, received uid is M80c18861476fe93aebff73a35dc393 And actual one (also in DB) is 4d80c18861476fe93aebff73a35dc393 As you see, they are "almost" the same, but not exacly, so user goes to default preferences page when clicks on the link. |
||||
| Steps To Reproduce: | |||||
| Additional Information: |
I have clean phplist installation with only one change - patch suggested here: http://forums.phplist.com/viewtopic.php?f=17&t=28038#p67641 [^] I have applied it because I send messages in Cyrillic and without this change they are received in wrong codepage. I don't think that this change is related to the bug, because it happens even if I restore original file. I send messages in codepage windows-1251. |
||||
| Attached Files: | |||||
| There are no notes attached to this issue. |
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15333 | [phplist] User Management | major | always | 09-09-09 15:41 | 10-09-09 01:58 |
|
|
|||||
| Reporter: | gazouteast | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | 2.10.10 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | Failure of navigation buttons in list member lists has returned in stable version | ||||
| Description: |
First reported here - http://mantis.phplist.com/view.php?id=15282#bugnotes [^] Pablo posted he'd fixed the issue in early August 2009 in the stable release download. The new download obtained on 6 Sept 2009 does not have the fix applied. I would have posted in the original topic but someone closed it. |
||||
| Steps To Reproduce: | |||||
| Additional Information: | |||||
| Attached Files: | |||||
| Notes | |||||
|
|
|||||
|
|
||||
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15288 | [phplist] Command Line | minor | have not tried | 13-05-09 16:40 | 07-09-09 17:19 |
|
|
|||||
| Reporter: | h2b2 | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | assigned | Product Version: | 2.10.10 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | v2.10.10: Commandline cron not working | ||||
| Description: |
Following issue was reported by jfm5440: ==== Start Quote ==== My command line processqueue cron jobs worked fine under 2.10.4 but after upgrade to 2.10.10 they stopped. It looks like the parameters are not getting passed. I have the "$commandline_users = array();" set so no user id is needed. ==== Well it appears to be a PHP register_globals problem. If i stub out require_once dirname(__FILE__) .'/commonlib/lib/unregister_globals.php'; from index.php the cli works. I know there are security implications in leaving register_globals on (which is my php.ini default because I want to for some old scripts). but index.php should work without global registration right? anyway if I edit .htaccess and add php_flag register_globals off the cli continues to work fine. ==== End Quote ==== Source: http://forums.phplist.com/viewtopic.php?f=17&t=24515 [^] |
||||
| Steps To Reproduce: | |||||
| Additional Information: | |||||
| Attached Files: | |||||
| Notes | |||||
|
|
|||||
|
|
||||
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15332 | [phplist] Interface - Frontend | minor | always | 07-09-09 14:03 | 07-09-09 14:03 |
|
|
|||||
| Reporter: | tuxick | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | 2.10.10 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | "import emails" is confusing and wrong | ||||
| Description: |
The dialog "import emails" is confusing, sounds like importing emails instead of email addresses. In some cases it might be "import from emails" or something. |
||||
| Steps To Reproduce: | |||||
| Additional Information: | |||||
| Attached Files: | |||||
| There are no notes attached to this issue. |
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15331 | [phplist] Internationalization (l18n) | text | always | 06-09-09 16:27 | 06-09-09 16:27 |
|
|
|||||
| Reporter: | Tokapi | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | 2.10.10 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | Dutch Translation | ||||
| Description: |
Hi, Over the past moths, I've been correcting the dutch translation. The current files have a lot of faulty typos and strange words. Most of the general used files should be fixed and are recompared with the original English files again. They are all zipped in attachment. Also noticed that bug 0015282 (next page doesn't work in listovervue) still isn't fixed in 2.10.10, so added it the package too. Greetings, B. |
||||
| Steps To Reproduce: | |||||
| Additional Information: | |||||
| Attached Files: | UpdateDutch2.10.10.zip (91 KB) 06-09-09 16:27 | ||||
| There are no notes attached to this issue. |
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15330 | [phplist] All Other | minor | have not tried | 06-09-09 07:56 | 06-09-09 07:56 |
|
|
|||||
| Reporter: | Philip vd Eijk | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | |||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | software error during update list subscriber | ||||
| Description: | see attachment with URL and source | ||||
| Steps To Reproduce: | |||||
| Additional Information: | |||||
| Attached Files: | HHerror.txt (6 KB) 06-09-09 07:56 | ||||
| There are no notes attached to this issue. |
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15329 | [phplist] HTML Email Support | minor | always | 03-09-09 18:10 | 03-09-09 18:20 |
|
|
|||||
| Reporter: | pablo | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | resolved | Product Version: | |||
| Product Build: | Resolution: | fixed | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | htmlemail checkbox info not kept when adding individual user | ||||
| Description: | The same problem reported in 0015312 but when adding a single user. Solved applying patch suggested there to line 161 of members.php. | ||||
| Steps To Reproduce: | |||||
| Additional Information: | |||||
| Attached Files: | |||||
| There are no notes attached to this issue. |
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15312 | [phplist] Subscriber Import | minor | always | 24-07-09 18:44 | 03-09-09 18:18 |
|
|
|||||
| Reporter: | noblestudios | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | resolved | Product Version: | 2.10.10 | ||
| Product Build: | Resolution: | fixed | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | Checking "I prefer to receive emails in HTML format" on import has no effect | ||||
| Description: |
On importing a rather large list, we found that all addresses were set as text only, even though we had chosen "I prefer to receive emails in HTML format" during the import. Subsequent testing revealed that this checkbox was being ignored entirely. This error can be fixed by changing line 212 of admin/import1.php from: $tables["user"],$email,$notify != "yes",$uniqid,$htmlemail); to: $tables["user"],$email,$notify != "yes",$uniqid,$_POST['$htmlemail']); |
||||
| Steps To Reproduce: | |||||
| Additional Information: | |||||
| Attached Files: | |||||
| Notes | |||||
|
|
|||||
|
|
||||
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15328 | [phplist] Interface - Backend | minor | always | 03-09-09 16:23 | 03-09-09 16:23 |
|
|
|||||
| Reporter: | rockit | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | 2.10.10 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | csv import html-email flag not imported into database | ||||
| Description: |
importing a csv-users file will not set the html-mail-format flag chosen as standard. bugfix/solution admin/import1.php on line 211 has to be changed from $query = sprintf('INSERT INTO %s (email,entered,confirmed,uniqid,htmlemail) values("%s",now(),%d,"%s","%s")', $tables["user"],$email,$notify != "yes",$uniqid,$htmlemail); to $query = sprintf('INSERT INTO %s (email,entered,confirmed,uniqid,htmlemail) values("%s",now(),%d,"%s","%s")', $tables["user"],$email,$notify != "yes",$uniqid,$_REQUEST['htmlemail']); |
||||
| Steps To Reproduce: | |||||
| Additional Information: | |||||
| Attached Files: | |||||
| There are no notes attached to this issue. |
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15327 | [phplist] Bounce Management | feature | always | 03-09-09 16:02 | 03-09-09 16:02 |
|
|
|||||
| Reporter: | lwc | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | 2.10.10 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | Reading unidentified bounces | ||||
| Description: |
There are certain unofficial ways to read them via PHPMyAdmin. But how about an official one? Please allow a way to simply read such bounces. While you can't handle them, you can still display them and let us deal with them manually. Thanks! |
||||
| Steps To Reproduce: | |||||
| Additional Information: | http://forums.phplist.com/viewtopic.php?t=28129 [^] | ||||
| Attached Files: | |||||
| There are no notes attached to this issue. |
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15303 | [phplist] Message Send Process | minor | always | 09-06-09 20:40 | 30-08-09 17:20 |
|
|
|||||
| Reporter: | tipichris | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | 2.10.10 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | Signatures added twice, and in invalid ways | ||||
| Description: |
If an HTML template includes a [SIGNATURE] placeholder, the signature is added both at the place holder and appended to the end of the message. Additionally, if the template includes the complete HTML, the appended signature is added after the closing </html> tag. The following patch resolves these issues: --- lists/admin/sendemaillib.php.orig Sun May 31 21:58:10 2009 +++ lists/admin/sendemaillib.php Tue Jun 9 20:28:03 2009 @@ -239,7 +239,7 @@ ## Parse placeholders #0013076: Blacklisting posibility for unknown users - foreach (array("forwardform","subscribe","preferences","unsubscribe","signature", 'blacklist') as $item) { + foreach (array("forwardform","subscribe","preferences","unsubscribe", 'blacklist') as $item) { if (eregi('\['.$item.'\]',$htmlmessage,$regs)) { $htmlmessage = eregi_replace('\['.$item.'\]',$html[$item],$htmlmessage); // unset($html[$item]); //ASK: Why was this done? It breaks placeholders in the footer @@ -301,7 +301,7 @@ if (eregi("\[SIGNATURE\]",$htmlmessage)) $htmlmessage = eregi_replace("\[SIGNATURE\]",$html["signature"],$htmlmessage); elseif ($html["signature"]) - $htmlmessage .= ' '.$html["signature"]; + $htmlmessage = addHTMLFooter($htmlmessage, ' '. $html["signature"]); if (eregi("\[FOOTER\]",$textmessage)) $textmessage = eregi_replace("\[FOOTER\]",$text["footer"],$textmessage); else |
||||
| Steps To Reproduce: | |||||
| Additional Information: | |||||
| Attached Files: | |||||
| Notes | |||||
|
|
|||||
|
|
||||
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15286 | [phplist] Bounce Management | minor | always | 12-05-09 17:01 | 30-08-09 13:09 |
|
|
|||||
| Reporter: | nickyoung | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | 2.10.10 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | delete bounce operation doesn't work from 'view a bounce' page | ||||
| Description: |
I just upgraded to 2.10.10. Now when I go to the "View a bounce" page from the admin and then with "Delete this bounce and go to the next" checked, hit the "Do the above" button, the page refreshes and the bounce doesn't appear to be deleted. |
||||
| Steps To Reproduce: | |||||
| Additional Information: | |||||
| Attached Files: | |||||
| Notes | |||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15292 | [phplist] Template Management | minor | always | 15-05-09 03:55 | 29-08-09 13:44 |
|
|
|||||
| Reporter: | h2b2 | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | 2.10.10 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | View templates generates a blank page | ||||
| Description: |
When trying to preview templates and clicking on the "view" link (e.g. lists/admin/?page=viewtemplate&id=1) the resulting page doesn't display the template preview. This issue was reported by astralbaby and confirmed on my system. ref: http://forums.phplist.com/viewtopic.php?p=62159#p62159 [^] |
||||
| Steps To Reproduce: | |||||
| Additional Information: | |||||
| Attached Files: | |||||
| Notes | |||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15324 | [phplist] Interface - Frontend | major | sometimes | 26-08-09 12:27 | 29-08-09 13:34 |
|
|
|||||
| Reporter: | lwc | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | 2.10.10 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | Subject and From turn to Gibberish when saved not in English | ||||
| Description: |
This is how the subject of this bug report should be phrased. Please direct all the specific bug reports (e.g. "subject doesn't work in my language" that won't consider other people) in here. The problem is in public_html/lists/admin/send_core.php: iconv('ISO-8859-1','UTF-8',$subject) and htmlentities(iconv('ISO-8859-1','UTF-8',$from) - those statements assume one uses ISO-8859-1, which is why you only get bug reports from people using other languages... Note those statements were only added in recent versions. For example, v2.10.7 didn't have them and thus had no problems. Here's the fix: // custom code - start $utf8_subject = $subject; $utf8_from = $from; if (strcasecmp($GLOBALS['strCharSet'], 'utf-8') <> 0) { $utf8_subject = iconv($GLOBALS['strCharSet'],'UTF-8',$utf8_subject); $utf8_from = iconv($GLOBALS['strCharSet'],'UTF-8',$utf8_from); } $maincontent .= ' <tr><td>'.Help("subject").' '.$GLOBALS['I18N']->get("Subject").':</td> <td><input type=text name="msgsubject" //value="'.htmlentities($utf8_subject,ENT_QUOTES,'UTF-8').'" size=40></td></tr> <tr> <td colspan=2> </td></tr> <tr><td>'.Help("from").' '.$GLOBALS['I18N']->get("fromline").':</td> <td><input type=text name=from value="'.htmlentities($utf8_from,ENT_QUOTES,'UTF-8').'" size=40></td></tr> <tr><td colspan=2> </td></tr>'; // custom code - end |
||||
| Steps To Reproduce: | |||||
| Additional Information: | The "//" in "//value" shows up in the HTML code. See bug report 0015323 | ||||
| Attached Files: | |||||
| Notes | |||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15296 | [phplist] Bounce Management | minor | have not tried | 22-05-09 13:23 | 28-08-09 06:57 |
|
|
|||||
| Reporter: | h2b2 | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | 2.10.10 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | Cannot increase bounce count manually | ||||
| Description: |
This issue was reported by ligie: ====Start quote==== when trying to increase a users bouncecount in PHPlist 2.10.10 manually on "view a bounce", the button "do the above" does nothing at all. I have checked the code in bounce.php there is a line if (isset($userid) && $amount) The problem seems to be, that $amount is never set. When I add the line $amount=$_GET["amount"]; everything is working. ==== End quote ==== Ref: http://forums.phplist.com/viewtopic.php?p=62388#p62388 [^] |
||||
| Steps To Reproduce: | |||||
| Additional Information: | |||||
| Attached Files: | |||||
| Notes | |||||
|
|
|||||
|
|
||||
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15285 | [phplist] Subscribe Process | minor | always | 12-05-09 01:27 | 28-08-09 05:44 |
|
|
|||||
| Reporter: | h2b2 | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | 2.10.10 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | v2.10.10: Attributes' order of listing on subscribe page cannot be saved | ||||
| Description: | When changing the order of listing on the 'edit a subscribe page' (lists/admin/?page=spageedit&id=1) by entering numbers starting from 0 in the attribute's "Order of Listing:" fields, and clicking on either the 'Save changes' or 'Save and activate' buttons, the entered values blank out and nothing is changed on the subscribe page. | ||||
| Steps To Reproduce: | |||||
| Additional Information: |
Issue reported by spidersilk: http://forums.phplist.com/viewtopic.php?p=61874#p61874 [^] Confirmed on my system: phplist 2.10.9 Linux/Apache PHP 5.2.3 MySQL 4.1.12 |
||||
| Attached Files: | |||||
| Notes | |||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15323 | [phplist] Interface - Frontend | tweak | always | 26-08-09 12:25 | 26-08-09 12:25 |
|
|
|||||
| Reporter: | lwc | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | 2.10.10 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | The Subject uses "//value=" instead "value=" | ||||
| Description: |
The problem is in public_html/lists/admin/send_core.php: <td><input type=text name="msgsubject" //value=... It seems not to break the HTML code, but it should be fixed nonetheless. The fixed code: <td><input type=text name="msgsubject" value=... |
||||
| Steps To Reproduce: | |||||
| Additional Information: | |||||
| Attached Files: | |||||
| There are no notes attached to this issue. |
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15322 | [phplist] Interface - Frontend | minor | always | 25-08-09 16:43 | 25-08-09 16:43 |
|
|
|||||
| Reporter: | lwc | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | 2.10.10 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | $strPreferHTMLEmail doesn't announce no HTML=no attachments | ||||
| Description: |
Most people take it for granted that HTML=HTML code. But in phplist's world, it also means no attachments. No subscriber knows that when they face the HTML decision. Therefore, please replace $strPreferHTMLEmail = 'I prefer to receive emails in HTML format'; With $strPreferHTMLEmail = 'I prefer to receive emails in HTML format (Note: cancelling this option means among other things replacing any attachments with external links!)'; |
||||
| Steps To Reproduce: | |||||
| Additional Information: | |||||
| Attached Files: | |||||
| There are no notes attached to this issue. |
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15321 | [phplist] Message Management | tweak | always | 25-08-09 16:17 | 25-08-09 16:17 |
|
|
|||||
| Reporter: | lwc | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | 2.10.10 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | Linebreaks in text link replacements of attachments | ||||
| Description: |
class.phplistmailer.php: function append_text($text) { if ($this->AltBody) { $this->AltBody .= html_entity_decode($text ,ENT_QUOTES, 'UTF-8' );#$text; } else { // custom code - start $this->Body .= html_entity_decode("$text\n" ,ENT_QUOTES, 'UTF-8' );#$text; // custom code - end } } Without that extra \n, the links and links' intro are really unreadable. You've already fixed sendemaillib.php to include one \n, so please add this fix too. |
||||
| Steps To Reproduce: | |||||
| Additional Information: | |||||
| Attached Files: | |||||
| There are no notes attached to this issue. |
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15301 | [phplist] Message Send Process | minor | sometimes | 03-06-09 01:38 | 25-08-09 04:49 |
|
|
|||||
| Reporter: | danjfoley | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | 2.10.10 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | function UserAttributeValue will end up with no value in $val_ids[0] causing sql command to fail | ||||
| Description: |
function UserAttributeValue in file commonlib/lib/userlib.php line 245: $val_ids[0] = cleanCommaList($val_ids[0]); at times $val_ids[0] will have one value in it.. and after the run of cleanCommaList $val_ids[0] will be empty. Thus causing the resulting SQL in this function that expects there to be a values in val_ids[0] to fail. |
||||
| Steps To Reproduce: | |||||
| Additional Information: |
in a run of 1132 users seems to only happen my 30 or so times. I have traced it down to failing here. I have output the value before and after the cleanCommaList. example: before: $val_ids[0] = "32" after: $val_ids[0] = ""; |
||||
| Attached Files: | |||||
| Notes | |||||
|
|
|||||
|
|
||||
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15235 | [phplist] Subscribe Process | feature | always | 18-02-09 13:37 | 12-08-09 09:34 |
|
|
|||||
| Reporter: | lwc | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | 2.11.2-RC1 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | Accept more $_GET parameters in subscribelib2.php | ||||
| Description: |
You already accept $_REQUEST['email'] and $_REQUEST['emailconfirm'] so there's no reason not accept defaults via $_GET parameters for the other two fields: 1) Allow ?p=subscribe&list[x]=signup function ListAvailableLists... if (isset($_POST['list'])) { $list = $_POST["list"]; // custom code - start } elseif (!isset($_POST["subscribe"]) && isset($_GET['list'])) { $list = $_GET["list"]; // custom code - end } else... 2) Allow ?p=subscribe&htmlemail=1 function ListAttributes... if (isset($_POST['htmlemail'])) { $htmlemail = $_POST["htmlemail"]; // custom code - start } elseif (!isset($_POST["subscribe"]) && isset($_GET['htmlemail'])) { $htmlemail = $_GET["htmlemail"]; // custom code - end } |
||||
| Steps To Reproduce: | |||||
| Additional Information: |
Note that you should NOT under any cirumstances "just" use $_REQUEST for "list" and "htmlemail" because it would turn them into required fields! That's why this request also fixes request 11011 |
||||
| Attached Files: | |||||
| Notes | |||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 6099 | [phplist] All Other | feature | always | 12-04-06 21:16 | 11-08-09 10:59 |
|
|
|||||
| Reporter: | ozp | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | 2.10.2 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | forwarding phplist messages and getting blacklisted | ||||
| Description: |
User receive phplist message. User forward message to a friend Friend clicks on the unsubscribe link User get blacklisted Message footer should not be included on the forwarded message. I cant think another way to avoid this problem. This problem happends a lot with my users. they are very newbies and so are their friends. |
||||
| Steps To Reproduce: | |||||
| Additional Information: | |||||
| Attached Files: | |||||
| Notes | |||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15261 | [phplist] User Management | trivial | always | 22-04-09 11:43 | 11-08-09 10:54 |
|
|
|||||
| Reporter: | lwc | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | FutureDevelopments | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | Silent blacklisting | ||||
| Description: |
You have to realize there's a HUGE difference between a user blacklisting himself/herself and one who requests (read: demands) the admin to do it for him/her. The last thing in the world you or the latter type of user wants is yet ANTOHER message, which could bring you more troubles. A temporal solution is doing this in admin/lib.php, just while silent blacklisting: function sendMail (... /* if ($GLOBALS['usephpmailer']) { return sendMailPhpMailer($to,$subject,$message); } else { return sendMailOriginal($to,$subject,$message,$header,$parameters); } */ So please just do something like this: if (this is the actual user removing himself/herself) { if ($GLOBALS['usephpmailer']) { return sendMailPhpMailer($to,$subject,$message); } else { return sendMailOriginal($to,$subject,$message,$header,$parameters); } } |
||||
| Steps To Reproduce: | |||||
| Additional Information: |
Such blacklisting still takes lots of time for phplist to acknowledge it. You'd think the trouble comes from blacklist_gracetime, but this doesn't seem to make any difference whatsoever: // custom code - start $GLOBALS["blacklist_gracetime"] = 1; // custom code - end if (!$skipblacklistcheck && isBlackListed($to)) { ... http://forums.phplist.com/viewtopic.php?t=23805 [^] |
||||
| Attached Files: | |||||
| Notes | |||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15319 | [phplist] Subscriber Import | minor | always | 11-08-09 10:05 | 11-08-09 10:09 |
|
|
|||||
| Reporter: | Thorsten Albrecht | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | new | Product Version: | 2.10.10 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | Option "I prefer to receive html emails" is beeing ignored when importing simple email text file | ||||
| Description: | When importing a simple email address list as simple text file, selecting the checkbox "I prefer to receive html emails" is beeing ignored. (phplist 2.10.10, FF3.5). | ||||
| Steps To Reproduce: | |||||
| Additional Information: | |||||
| Attached Files: | |||||
| Notes | |||||
|
|
|||||
|
|
||||
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15279 | [phplist] Subscribe Process | major | always | 06-05-09 21:10 | 07-08-09 20:26 |
|
|
|||||
| Reporter: | highcontrast | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | assigned | Product Version: | 2.10.9 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | 3 or more Radio Inputs Required causes endless loop on submit | ||||
| Description: |
If a subscribe page has 3 or more (I think it's 3, may be +/- 1) radio inputs that are required it causes and endless loop. This can be a serious problem in FireFox if you click "continue" and check "don't ask me again". This locks up FireFox. This has been verified in FireFox 3.0.10 on Windows XP, though I'm guessing this would appear in any browser. The problem seems to be one of variable scope caused by using the same variable, i, to control a number of loops. Specifically it is a problem with the checkGroup function in index.php. Using a different variable name instead of i in this function fixes the problem. For example: function checkGroup(name,value) { option = -1; for (checkGroupi=0;checkGroupi<document.subscribeform.elements[name].length;checkGroupi++) { if (document.subscribeform.elements[name][checkGroupi].checked) { option = checkGroupi; } } if (option == -1) { alert ("'.$GLOBALS["strPleaseEnter"].' "+value); return false; } return true; } Hope this helps. |
||||
| Steps To Reproduce: | |||||
| Additional Information: | |||||
| Attached Files: | |||||
| There are no notes attached to this issue. |
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15289 | [phplist] Subscribe Process | minor | always | 14-05-09 07:26 | 07-08-09 20:22 |
|
|
|||||
| Reporter: | h2b2 | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | assigned | Product Version: | 2.10.10 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | v2.10.10: UNSUBSCRIBE_JUMPOFF doesn't seem to work for personalized unsubscribe link | ||||
| Description: |
When UNSUBSCRIBE_JUMPOFF" is set to 1 in config.php, the script still displays the 'tell us why' text box when using a _personalized unsubscribe_ link*** (unsubscribe url+uid, e.g. lists/?p=unsubscribe&uid=c2672b3f595..etc.) is used. The "Tell us why" text box is NOT displayed if a _non-personalized link_ (e.g. lists/?p=unsubscribe) is used. |
||||
| Steps To Reproduce: | |||||
| Additional Information: |
This issue was previously reported (and partly fixed) in http://mantis.phplist.com/view.php?id=15212 [^] system info: phplist 2.10.10 Linux/Apache PHP 5.2.3 MySQL 4.1.12 |
||||
| Attached Files: | |||||
| There are no notes attached to this issue. |
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 15282 | [phplist] User Management | minor | always | 11-05-09 15:58 | 07-08-09 19:46 |
|
|
|||||
| Reporter: | h2b2 | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | resolved | Product Version: | 2.10.10 | ||
| Product Build: | Resolution: | fixed | |||
| Projection: | none | ||||
| ETA: | none | ||||
|
|
|||||
| Summary: | v2.10.10: 'View list members' does only allow viewing the first page of 50 users on the list | ||||
| Description: |
When viewing list members (e.g. lists/admin/?page=members&id=1) it is only possible to view the first page of 50 list members. It is not possible to view the remainder of the list members, as the navigation links (<,>,<<,>>) do not seem to work. For instance, ">" (http://my_domain.com/lists/admin/?page=members&start=50&id=1) [^] does not load the next 50 list members. |
||||
| Steps To Reproduce: | |||||
| Additional Information: |
This issue is reported by several forum users (system info included in their posts). Related to this forum thread: http://forums.phplist.com/viewtopic.php?f=17&t=24514&start=0 [^] |
||||
| Attached Files: | |||||
| Notes | |||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
|
|
|||||
|
|
||||
| Viewing Issue Advanced Details | |||||
|
|
|||||
| ID: | Category: | Severity: | Reproducibility: | Date Submitted: | Last Update: |
| 5385 | [phplist] Message Send Process | major | always | 06-02-06 20:08 | 06-08-09 23:51 |
|
|
|||||
| Reporter: | dave_graham | Platform: | |||
| Assigned To: | OS: | ||||
| Priority: | normal | OS Version: | |||
| Status: | confirmed | Product Version: | 2.10.2 | ||
| Product Build: | Resolution: | open | |||
| Projection: | none | ||||
| ETA: | none | ||||