Re: [SM-USERS] Unsafe Image Rules

2021-01-06 Thread Andrés Chandía



El Mie, 6 de Enero de 2021, 20:36, Paul Lesniewski escribió:
··
··
·· On Wed, January 6, 2021 7:16 pm, "Andrés Chandía" wrote:
··>
··>
··> El Mie, 6 de Enero de 2021, 20:05, "Andrés Chandía" escribió:
··> ··
··> ··
··> ·· El Mie, 6 de Enero de 2021, 19:36, Paul Lesniewski escribió:
··> ·· ··
··> ·· ··
··> ·· ·· On Wed, January 6, 2021 6:01 pm, "Andrés Chandía" wrote:
··> ·· ··>
··> ·· ··>
··> ·· ··> Still finding some issues, now with the unsafe_image_rules plugin.
··> ·· ··>
··> ·· ··> If I activate
··> ·· ··> this plugin when clicking the link to "See unsafe images" the
··> entire email
··> ·· ··> body
··> ·· ··> desapears, clicking back the "hide unsafe images" shows the email
··> body
··> ·· ··> again.
··> ·· ··
··> ·· ·· http://squirrelmail.org/docs/admin/admin-11.html#ss11.1
··> ·· ··
··> ·· ··> If the plugin is not activated the "see unsafe images" works ok.
··> ·· ··
··> ·· ·· This makes no sense.  If you deactivate the plugin, said feature
··> will be
··> ·· ·· gone.  Maybe you have the plugin installed twice or something else
··> quite
··> ·· ·· mixed up.
··> ·· ··
··> ·· ··> SM 1.4.23 [SVN]
··> ·· ··> Unsafe Image Rules Version 0.8
··> ·· ··
··> ··
··> ··
··> ··
··> ·· It does make sense, I'm talking about the "View unsafe images" link
··> that comes from
··> ·· /src/read_body.php
··
·· Indeed, a bit hasty on my part.
··
··> ·· Error: Call to undefined function eregi() in
··> ·· /usr/share/squirrelmail/plugins/unsafe_image_rules/functions.php on
··
·· This is why reviewing the mailing list posting guidelines and including
·· all the information requested is important.
··
··> in line 335 of
··> /usr/share/squirrelmail/plugins/unsafe_image_rules/functions.php
··> there was:
··>
··> while (eregi('(' . $Email_RegExp_Match . ')', $str, $hits)) {
··>
··> changing it to:
··> while (preg_match('(' . $Email_RegExp_Match . ')', $str, $hits)) {
··>
··> solved the problem
··
·· That's the right fix.
··
··
··
··
Thanks again Paul , it's just that maybe I did the wrong search because I 
didn't find it
anyway, if it helps anybody, I know it is not the right way to do it but in my 
file
 /src/read_body.php line 710 I added:

echo $download_and_unsafe_link. " | Visualization rules for 
images ";

Thanks again.




-
squirrelmail-users mailing list
Posting guidelines: http://squirrelmail.org/postingguidelines
List address: squirrelmail-users@lists.sourceforge.net
List archives: http://news.gmane.org/gmane.mail.squirrelmail.user
List info (subscribe/unsubscribe/change options): 
https://lists.sourceforge.net/lists/listinfo/squirrelmail-users


Re: [SM-USERS] Unsafe Image Rules

2021-01-06 Thread Andrés Chandía



El Mie, 6 de Enero de 2021, 20:05, "Andrés Chandía" escribió:
··
··
·· El Mie, 6 de Enero de 2021, 19:36, Paul Lesniewski escribió:
·· ··
·· ··
·· ·· On Wed, January 6, 2021 6:01 pm, "Andrés Chandía" wrote:
·· ··>
·· ··>
·· ··> Still finding some issues, now with the unsafe_image_rules plugin.
·· ··>
·· ··> If I activate
·· ··> this plugin when clicking the link to "See unsafe images" the entire 
email
·· ··> body
·· ··> desapears, clicking back the "hide unsafe images" shows the email body
·· ··> again.
·· ··
·· ·· http://squirrelmail.org/docs/admin/admin-11.html#ss11.1
·· ··
·· ··> If the plugin is not activated the "see unsafe images" works ok.
·· ··
·· ·· This makes no sense.  If you deactivate the plugin, said feature will be
·· ·· gone.  Maybe you have the plugin installed twice or something else quite
·· ·· mixed up.
·· ··
·· ··> SM 1.4.23 [SVN]
·· ··> Unsafe Image Rules Version 0.8
·· ··
··
··
··
·· It does make sense, I'm talking about the "View unsafe images" link that 
comes from
·· /src/read_body.php file, line 710: "echo $download_and_unsafe_link;"
··
·· the link created by the previous function when clicked shows an empty body 
if the plugin
·· "Unsafe Image Rules" is activated
··
·· README OF THIS PLUGIN SAYS
·· "A user may now build a list of rules that will be used to determine if 
unsafe
·· images will be shown in HTML messages. If a message matches any of the rules 
and
·· contains images that would normally be initially hidden, then they are now 
shown
·· by default."
··
·· activating php error display I got this:
··
·· Error: Call to undefined function eregi() in
·· /usr/share/squirrelmail/plugins/unsafe_image_rules/functions.php on line 335
·· Call Stack
·· #TimeMemory  FunctionLocation
·· 10.0070  377968  {main}( )   .../read_body.php:0
·· 20.5840  1474472 formatEnvheader( )  .../read_body.php:875
·· 30.5920  1544800 formatToolbar( ).../read_body.php:517
·· 40.5921  1545864 do_hook( )  .../read_body.php:713
·· 50.5963  1588688 unsafe_image_rules_link( )  .../plugin.php:52
·· 60.5963  1588688 unsafe_image_rules_link_do( )   .../setup.php:40
·· 70.5963  1588912 unsafe_image_rules_link_array( )
.../functions.php:378
·· 8    0.5963  1588992 unsafe_image_rules_link_string( )   
.../functions.php:350
··
·· Thanks again Paul!
··
·· andrés chandía

in line 335 of /usr/share/squirrelmail/plugins/unsafe_image_rules/functions.php
there was:

while (eregi('(' . $Email_RegExp_Match . ')', $str, $hits)) {

changing it to:
while (preg_match('(' . $Email_RegExp_Match . ')', $str, $hits)) {

solved the problem

Thanks!






-
squirrelmail-users mailing list
Posting guidelines: http://squirrelmail.org/postingguidelines
List address: squirrelmail-users@lists.sourceforge.net
List archives: http://news.gmane.org/gmane.mail.squirrelmail.user
List info (subscribe/unsubscribe/change options): 
https://lists.sourceforge.net/lists/listinfo/squirrelmail-users


Re: [SM-USERS] Unsafe Image Rules

2021-01-06 Thread Andrés Chandía



El Mie, 6 de Enero de 2021, 19:36, Paul Lesniewski escribió:
··
··
·· On Wed, January 6, 2021 6:01 pm, "Andrés Chandía" wrote:
··>
··>
··> Still finding some issues, now with the unsafe_image_rules plugin.
··>
··> If I activate
··> this plugin when clicking the link to "See unsafe images" the entire email
··> body
··> desapears, clicking back the "hide unsafe images" shows the email body
··> again.
··
·· http://squirrelmail.org/docs/admin/admin-11.html#ss11.1
··
··> If the plugin is not activated the "see unsafe images" works ok.
··
·· This makes no sense.  If you deactivate the plugin, said feature will be
·· gone.  Maybe you have the plugin installed twice or something else quite
·· mixed up.
··
··> SM 1.4.23 [SVN]
··> Unsafe Image Rules Version 0.8
··



It does make sense, I'm talking about the "View unsafe images" link that comes 
from
/src/read_body.php file, line 710: "echo $download_and_unsafe_link;"

the link created by the previous function when clicked shows an empty body if 
the plugin
"Unsafe Image Rules" is activated

README OF THIS PLUGIN SAYS
"A user may now build a list of rules that will be used to determine if unsafe
images will be shown in HTML messages. If a message matches any of the rules and
contains images that would normally be initially hidden, then they are now shown
by default."

activating php error display I got this:

Error: Call to undefined function eregi() in
/usr/share/squirrelmail/plugins/unsafe_image_rules/functions.php on line 335
Call Stack
#   TimeMemory  FunctionLocation
1   0.0070  377968  {main}( )   .../read_body.php:0
2   0.5840  1474472 formatEnvheader( )  .../read_body.php:875
3   0.5920  1544800 formatToolbar( ).../read_body.php:517
4   0.5921  1545864 do_hook( )  .../read_body.php:713
5   0.5963  1588688 unsafe_image_rules_link( )  .../plugin.php:52
6   0.5963  1588688 unsafe_image_rules_link_do( )   .../setup.php:40
7   0.5963  1588912 unsafe_image_rules_link_array( )
.../functions.php:378
8   0.5963  1588992 unsafe_image_rules_link_string( )   
.../functions.php:350

Thanks again Paul!

andrés chandía



-
squirrelmail-users mailing list
Posting guidelines: http://squirrelmail.org/postingguidelines
List address: squirrelmail-users@lists.sourceforge.net
List archives: http://news.gmane.org/gmane.mail.squirrelmail.user
List info (subscribe/unsubscribe/change options): 
https://lists.sourceforge.net/lists/listinfo/squirrelmail-users


[SM-USERS] Unsafe Image Rules

2021-01-06 Thread Andrés Chandía



Still finding some issues, now with the unsafe_image_rules plugin.

If I activate
this plugin when clicking the link to "See unsafe images" the entire email body
desapears, clicking back the "hide unsafe images" shows the email body again.

If the plugin is not activated the "see unsafe images" works ok.

SM 1.4.23 [SVN]
Unsafe Image Rules Version 0.8



___

            andrés
chandía
 
Düngupeyem | IECMap | ISECMap | NMT | Corlexim

Desarrollador de:
Parles.upf | IWCH | Amind terapia | ONG
Mapuche koyaktu | Nocando | IAC | CddZ | ISAC | CatCg
P No imprima innecesariamente. ¡Cuide el
medio ambiente!

-
squirrelmail-users mailing list
Posting guidelines: http://squirrelmail.org/postingguidelines
List address: squirrelmail-users@lists.sourceforge.net
List archives: http://news.gmane.org/gmane.mail.squirrelmail.user
List info (subscribe/unsubscribe/change options): 
https://lists.sourceforge.net/lists/listinfo/squirrelmail-users


Re: [SM-USERS] Set character environment

2020-12-31 Thread Andrés Chandía



El Mie, 30 de Diciembre de 2020, 4:50, Paul Lesniewski escribió:
··> Thanks Paul, latest svn stable version did the trick, eventhough I still
··> have two minor problems,
··>
··> 1. image buttons have desapeared, I can enable and disable the plugin but
··> icons don't show
··
·· What image button?
··
··> 2. If  my mail composition preference is the html format, when answering a
··> txt format received
··> mail the text from the original message is not recovered, I have to change
··> the setting...
··>
··> Default Email Composition Format: Plain Text
··>
··> to get the text from the message I'm answering into the response.
··> On the contrary, this does not happen with the mails that were sent to me
··> in html format.
··>
··> Some advice?
··
·· Maybe follow the posting guidelines?  You have to post details about what
·· you installed and give us more to go on.
··


Hi there, it seems that the issue about encoding is not totally solved, for 
some emails I'm
getting :

 1.* OK [ALERT] Message 1 appears to be a Unicode message and your E-mail 
reader did not
enable Unicode support. Please use an E-mail reader that supports IMAP with 
UTF-8 (see
https://tools.ietf.org/html/rfc6855.html)

both the subject and the body contain: aprobación


___ andrés chandía



-
squirrelmail-users mailing list
Posting guidelines: http://squirrelmail.org/postingguidelines
List address: squirrelmail-users@lists.sourceforge.net
List archives: http://news.gmane.org/gmane.mail.squirrelmail.user
List info (subscribe/unsubscribe/change options): 
https://lists.sourceforge.net/lists/listinfo/squirrelmail-users


Re: [SM-USERS] Set character environment

2020-12-30 Thread Andrés Chandía



El Mie, 30 de Diciembre de 2020, 4:50, Paul Lesniewski escribió:
··> Thanks Paul, latest svn stable version did the trick, eventhough I still
··> have two minor problems,
··>
··> 1. image buttons have desapeared, I can enable and disable the plugin but
··> icons don't show
··
·· What image button?
··
··> 2. If  my mail composition preference is the html format, when answering a
··> txt format received
··> mail the text from the original message is not recovered, I have to change
··> the setting...
··>
··> Default Email Composition Format: Plain Text
··>
··> to get the text from the message I'm answering into the response.
··> On the contrary, this does not happen with the mails that were sent to me
··> in html format.
··>
··> Some advice?
··
·· Maybe follow the posting guidelines?  You have to post details about what
·· you installed and give us more to go on.
··


Ok, image_buttons plugin working again, I had to run the patch again and that 
did it...

The installed SM I have is 1.4.23 [SVN] from

Stable version Subversion source code repository access
svn checkout 
https://svn.code.sf.net/p/squirrelmail/code/branches/SM-1_4-STABLE/squirrelmail

Related plugins:
HTML Mail plugin for SquirrelMail Ver 2.3, 2005/10/15
view_as_html 3.8


___ andrés chandía



-
squirrelmail-users mailing list
Posting guidelines: http://squirrelmail.org/postingguidelines
List address: squirrelmail-users@lists.sourceforge.net
List archives: http://news.gmane.org/gmane.mail.squirrelmail.user
List info (subscribe/unsubscribe/change options): 
https://lists.sourceforge.net/lists/listinfo/squirrelmail-users


Re: [SM-USERS] Set character environment

2020-12-29 Thread Andrés Chandía



El Mar, 29 de Diciembre de 2020, 18:31, Paul Lesniewski escribió:
··
··
··  On Tue, December 29, 2020 2:54 pm, "Andrés Chandía" wrote:
·· >>
·· > Thanks for your advice Atoth,
·· > I've found at least 4 patches in the thread you sent me, but I think you
·· > refer to this one:
·· >
·· > quoted_printable_fix-1.4.x-version_3.diff
·· >
·· > I tried to apply it, but it always got rejected, so I checked the
·· > implicated files
·· > functions/i18n.php and functions/strings.php, and I have found that they
·· > already had what the
·· > patch was applying, exept that in file functions/strings.php there was a
·· > section not included
·· > which I included manually, but there was no imporvement anyway.
··
··  This is always a bad sign and no one can really help you when it becomes
··  that messy.
··
·· > Actually as you can see in
·· > this mail nor even what you wrote to me is recovered in the reply.
··
··  
··
·· > here are the packages I have installed:
·· >
·· > squirrelmail_1.4.23~svn20120406-2ubuntu1_all.deb
··
··  This could easily be the problem.  Please start over with a svn snapshot
··  build from our downloads page instead.
··

Thanks Paul, latest svn stable version did the trick, eventhough I still have 
two minor problems,

1. image buttons have desapeared, I can enable and disable the plugin but icons 
don't show
2. If  my mail composition preference is the html format, when answering a txt 
format received
mail the text from the original message is not recovered, I have to change the 
setting...

Default Email Composition Format: Plain Text

to get the text from the message I'm answering into the response.
On the contrary, this does not happen with the mails that were sent to me in 
html format.

Some advice?

Thanks again


___ andrés chandía




-
squirrelmail-users mailing list
Posting guidelines: http://squirrelmail.org/postingguidelines
List address: squirrelmail-users@lists.sourceforge.net
List archives: http://news.gmane.org/gmane.mail.squirrelmail.user
List info (subscribe/unsubscribe/change options): 
https://lists.sourceforge.net/lists/listinfo/squirrelmail-users


Re: [SM-USERS] Set character environment

2020-12-29 Thread Andrés Chandía
>
Thanks for your advice Atoth,
I've found at least 4 patches in the thread you sent me, but I think you refer 
to this one:

quoted_printable_fix-1.4.x-version_3.diff

I tried to apply it, but it always got rejected, so I checked the implicated 
files
functions/i18n.php and functions/strings.php, and I have found that they 
already had what the
patch was applying, exept that in file functions/strings.php there was a 
section not included
which I included manually, but there was no imporvement anyway. Actually as you 
can see in
this mail nor even what you wrote to me is recovered in the reply.


+
+   // make sure htmlspecialchars() supports the needed encoding
+   //
+   if (!in_array(strtolower($encoding), $htmlspecialchars_charsets))
+   {
+  // use default from configuration if provided or hard-coded fallback
+  //
+  global $default_htmlspecialchars_encoding;
+  if (!empty($default_htmlspecialchars_encoding))
+ $encoding = $default_htmlspecialchars_encoding;
+  else
+ $encoding = 'iso-8859-1';
+   }
+
+

here are the packages I have installed:

squirrelmail_1.4.23~svn20120406-2ubuntu1_all.deb
squirrelmail-compatibility_2.0.16-1_all.deb
squirrelmail-decode_1.2-1ubuntu1_all.deb
squirrelmail-locales_1.4.18-20090526-1_all.deb
squirrelmail-lockout_1.7-2_all.deb
squirrelmail-logger_2.3.1-1_all.deb
squirrelmail-quicksave_2.4.5-1_all.deb
squirrelmail-secure-login_1.4-3_all.deb
squirrelmail-sent-confirmation_1.6-2_all.deb
squirrelmail-spam-buttons_2.3.1-1_all.deb
squirrelmail-viewashtml_3.8-3_all.deb




-
squirrelmail-users mailing list
Posting guidelines: http://squirrelmail.org/postingguidelines
List address: squirrelmail-users@lists.sourceforge.net
List archives: http://news.gmane.org/gmane.mail.squirrelmail.user
List info (subscribe/unsubscribe/change options): 
https://lists.sourceforge.net/lists/listinfo/squirrelmail-users


Re: [SM-USERS] Set character environment

2020-12-29 Thread Andrés Chandía



Here's what I have now



squirrelmail_1.4.23~svn20120406-2ubuntu1_all.deb
squirrelmail-compatibility_2.0.16-1_all.deb
squirrelmail-decode_1.2-1ubuntu1_all.deb
squirrelmail-locales_1.4.18-20090526-1_all.deb
squirrelmail-lockout_1.7-2_all.deb
squirrelmail-logger_2.3.1-1_all.deb
squirrelmail-quicksave_2.4.5-1_all.deb
squirrelmail-secure-login_1.4-3_all.deb
squirrelmail-sent-confirmation_1.6-2_all.deb
squirrelmail-spam-buttons_2.3.1-1_all.deb
squirrelmail-viewashtml_3.8-3_all.deb




___

            andrés
chandía
 
Düngupeyem | IECMap | ISECMap | NMT | Corlexim

Desarrollador de:
Parles.upf | IWCH | Amind terapia | ONG
Mapuche koyaktu | Nocando | IAC | CddZ | ISAC | CatCg
P No imprima innecesariamente. ¡Cuide el
medio ambiente!

-
squirrelmail-users mailing list
Posting guidelines: http://squirrelmail.org/postingguidelines
List address: squirrelmail-users@lists.sourceforge.net
List archives: http://news.gmane.org/gmane.mail.squirrelmail.user
List info (subscribe/unsubscribe/change options): 
https://lists.sourceforge.net/lists/listinfo/squirrelmail-users


[SM-USERS] Set character environment

2020-12-28 Thread Andrés Chandía


Thanks Paul, I have that already configured, I could save all my settings, but 
things
don't go as expected anyway, for instance, for some messages the subject or the 
sender or both
are not shown, I can not longer see the mails in the html view, only in plain 
text (except for
the ones I send), and my address book is full of strange characters




Not sure what you're after, but you can start by setting SquirrelMail to
 use
UTF8 in config/config.php
 
 $default_charset       =
'utf-8';
 $lossy_encoding        = true;
 
 Though how this
plays out can depend if the charset you are using is
 provided in UTF or not.






Hi there, not long ago I could finally set my server and squirrelmail to work 
fine with
character encoding following a set of instructions...


Unfortunatelly something went wrong on my server and I've lost that config, now 
I can not
find the instructions to set the character encoding environment again, if you 
know what these
instructions could be, would you be so kind to send me the link to them


thanks...


PS: is it not "internationalization" from the admin manual




___
 andrés chandía


Düngupeyem | IECMap | ISECMap | NMT | Corlexim

Desarrollador de:
Parles.upf | IWCH | Amind terapia | ONG Mapuche koyaktu | Nocando | IAC | CddZ 
| ISAC | CatCg
P No imprima innecesariamente. ¡Cuide el
medio ambiente!  


___

            andrés
chandía
 
Düngupeyem | IECMap | ISECMap | NMT | Corlexim

Desarrollador de:
Parles.upf | IWCH | Amind terapia | ONG
Mapuche koyaktu | Nocando | IAC | CddZ | ISAC | CatCg
P No imprima innecesariamente. ¡Cuide el
medio ambiente!
-
squirrelmail-users mailing list
Posting guidelines: http://squirrelmail.org/postingguidelines
List address: squirrelmail-users@lists.sourceforge.net
List archives: http://news.gmane.org/gmane.mail.squirrelmail.user
List info (subscribe/unsubscribe/change options): 
https://lists.sourceforge.net/lists/listinfo/squirrelmail-users

Re: [SM-USERS] Please use an E-mail reader that supports IMAP with UTF-8

2020-05-15 Thread Andrés Chandía


Hi there,


some days ago I was informing you that I got this error after upgrading my 
Ubuntu server
from 18.04 to 20.04.


ERROR: No se pudo completar la solicitud.
Respuesta  desconocida del servidor IMAP: 1.* OK [ALERT] Message 1
appears to be a  Unicode message and your E-mail reader did not enable Unicode 
support. 
Please use an E-mail reader that supports IMAP with UTF-8 (see 
https://tools.ietf.org/html/rfc6855.html) 






Well, now I would like to inform you that this error was caused by  an old 
email stored
in my inbox which was otherwise encoded, I just  deleted the email and the 
error went
away

Thanks anyway



___

andrés
chandía
 
Düngupeyem | IECMap | ISECMap | NMT | Corlexim

Desarrollador de:
Parles.upf | IWCH | Amind terapia | ONG
Mapuche koyaktu | Nocando | IAC | CddZ | ISAC | CatCg
P No imprima innecesariamente. ¡Cuide el
medio ambiente!

-
squirrelmail-users mailing list
Posting guidelines: http://squirrelmail.org/postingguidelines
List address: squirrelmail-users@lists.sourceforge.net
List archives: http://news.gmane.org/gmane.mail.squirrelmail.user
List info (subscribe/unsubscribe/change options): 
https://lists.sourceforge.net/lists/listinfo/squirrelmail-users

Re: [SM-USERS] Plugins - Add Address

2020-05-14 Thread Andrés Chandía


Mmm, I see the link is not reproduced so here you  have it again...


http://www.chandia.net/compart/add_address-1.0.3-1.4.1.tar.gz




El Jue, 14 de Mayo de 2020, 14:35, "Andrés Chandía"
escribió:
> 
> 
> I did a little amend in the code and the
plugin is working again
> here you have it:
> 
> 
>
add_address-1.0.3-1.4.1.tar.gz
> 
> 
> 
>
_______
> 
>
andrés
> chandía
> 
> Düngupeyem | IECMap | ISECMap | NMT |
Corlexim
> 
>
Desarrollador de:
> Parles.upf | IWCH | Amind
terapia | ONG
> Mapuche koyaktu | Nocando | IAC | CddZ | ISAC | CatCg
> P No
imprima innecesariamente. ¡Cuide el
> medio ambiente!
> 
>
-
> squirrelmail-users mailing list
> Posting guidelines:
http://squirrelmail.org/postingguidelines
> List address:
squirrelmail-users@lists.sourceforge.net
> List archives:
http://news.gmane.org/gmane.mail.squirrelmail.user
> List info
(subscribe/unsubscribe/change options):
>
https://lists.sourceforge.net/lists/listinfo/squirrelmail-users



___

andrés
chandía
 
Düngupeyem | IECMap | ISECMap | NMT | Corlexim

Desarrollador de:
Parles.upf | IWCH | Amind terapia | ONG
Mapuche koyaktu | Nocando | IAC | CddZ | ISAC | CatCg
P No imprima innecesariamente. ¡Cuide el
medio ambiente!

-
squirrelmail-users mailing list
Posting guidelines: http://squirrelmail.org/postingguidelines
List address: squirrelmail-users@lists.sourceforge.net
List archives: http://news.gmane.org/gmane.mail.squirrelmail.user
List info (subscribe/unsubscribe/change options): 
https://lists.sourceforge.net/lists/listinfo/squirrelmail-users

[SM-USERS] Plugins - Add Address

2020-05-14 Thread Andrés Chandía


I did a little amend in the code and the plugin is working again
here you have it:


add_address-1.0.3-1.4.1.tar.gz



___

andrés
chandía
 
Düngupeyem | IECMap | ISECMap | NMT | Corlexim

Desarrollador de:
Parles.upf | IWCH | Amind terapia | ONG
Mapuche koyaktu | Nocando | IAC | CddZ | ISAC | CatCg
P No imprima innecesariamente. ¡Cuide el
medio ambiente!

-
squirrelmail-users mailing list
Posting guidelines: http://squirrelmail.org/postingguidelines
List address: squirrelmail-users@lists.sourceforge.net
List archives: http://news.gmane.org/gmane.mail.squirrelmail.user
List info (subscribe/unsubscribe/change options): 
https://lists.sourceforge.net/lists/listinfo/squirrelmail-users

[SM-USERS] Please use an E-mail reader that supports IMAP with UTF-8

2020-05-12 Thread Andrés Chandía



Hi there,
I have just upgraded my server from Ubuntu 18.04 to 20.04, everything is 
working fine
except that at my Squirrelmail interface I get this error:



ERROR: No se pudo completar la
solicitud.
Respuesta  desconocida del servidor
IMAP: 1.* OK [ALERT] Message 1 appears to be a  Unicode message and your E-mail 
reader did not
enable Unicode support.  Please use an E-mail reader that supports IMAP with 
UTF-8 (see 
https://tools.ietf.org/html/rfc6855.html) 
 


I've been looking around and I tried solutions for curier which is my imap 
server, but
the problem seems to be in squirrelmail...


SquirrelMail version 1.4.23 [SVN]
Language preferences
1.  Default
Language       : es_ES
2.  Default
Charset        : utf-8
3.  Enable lossy
encoding  : false


courier-imap             
5.0.6+1.0.6-1build2    amd64        Courier
mail server - IMAP server





Thanks








___

            andrés
chandía
 
Düngupeyem | IECMap | ISECMap | NMT | Corlexim

Desarrollador de:
Parles.upf | IWCH | Amind terapia | ONG
Mapuche koyaktu | Nocando | IAC | CddZ | ISAC | CatCg
P No imprima innecesariamente. ¡Cuide el
medio ambiente!

-
squirrelmail-users mailing list
Posting guidelines: http://squirrelmail.org/postingguidelines
List address: squirrelmail-users@lists.sourceforge.net
List archives: http://news.gmane.org/gmane.mail.squirrelmail.user
List info (subscribe/unsubscribe/change options): 
https://lists.sourceforge.net/lists/listinfo/squirrelmail-users


Re: [SM-USERS] Translation issue

2017-01-06 Thread Andrés Chandía


Ok, it is available here:

http://chandia.net/compart/squirrelmail-locales-es_ES.tar.gz



___

            andrés
chandía

NMT |
Dungupeyem | Corlexim

administrador de:
Parles.upf | Amind
terapia | Mapuche koyaktu | Nocando |
mail: ONG Mapuche koyaktu | Psicoaching |
P No imprima innecesariamente. ¡Cuide el medio ambiente!
--
Check out the vibrant tech community on one of the world's most 
engaging tech sites, SlashDot.org! http://sdm.link/slashdot
-
squirrelmail-users mailing list
Posting guidelines: http://squirrelmail.org/postingguidelines
List address: squirrelmail-users@lists.sourceforge.net
List archives: http://news.gmane.org/gmane.mail.squirrelmail.user
List info (subscribe/unsubscribe/change options): 
https://lists.sourceforge.net/lists/listinfo/squirrelmail-users


Re: [SM-USERS] Translation issue

2017-01-05 Thread Andrés Chandía


Yeah, I have always had that problem unsolved, here's what I have:
1.  Default
Language   : es_ES
2.  Default Charset: ISO-8859-15
3.  Enable lossy
encoding  : false

the locale charmap at my server is UTF-8, maybe this is the
reason
There are some instrucctions at the plugins readmes or intalls but thos are
not so clear.
I wuould like to contribute with my translations so far, I attach a tar.gz
file, there are
some plugins I could not translate though.



Your
email is almost unreadable. I don't know how you configured SquirrelMail to 
munge the reply
history so badly, but you should look into it.  On 2016年12月15日 07:10,
"Andrés Chandía" wrote: >  >  > On
2016年12月14日 05:50,
"Andrés Chandía" > wrote:
>  >  > Hi there, I'm trying to add new translation pairs to an already
existent > translations set, > actually in Spanish. So, to
the > "squirrelmail.po" I have added for instance:
> >  > msgid "Move All" > msgstr
"Mover todo" >  >> then I run > the
command: >>  > msgfmt -o squirrelmail.mo > squirrelmail.po >  > But in > the
end > the expresion never appears translated at the mail >
interface... any advice?  Sounds like you're translating a string that belongs 
to the
> Move All Messages plugin. You shouldn't add strings at random to
the main po(t) file; find the > string you're looking to
translate amongst the po files we provide and go from there.  If you > think 
the string is missing, that's another question. >  > Thanks, that helped me 
with the
translation of the "Move All Messages" and >
"Notes" plugins, but how do I manage those plugins which don't even mentions
things > about translation or locale like: "Notify",
"Small Cal" or "To > Do". For Small Call
there is a "smallcal.po" file at the >
"squirrelmail/locale/es_ES/LC_MESSAGES" directory, but does not works...  I
don't know why you are bothering with Small Cal -- I believe it's designated as 
obsolete.  Any
plugins that don't use their own locale can be translated by adding strings to 
the main
squirrelmail locale as a temporary measure.  Be weary of plugins that old.  > 
By the way, there are no good instructions on how to translate plugins,
so I would like to > contribute with some:  I think
there are if you look at the plugin author's guide. It's also possible that you 
are not
working from the most up to date translation data. Please get a SVN snapshot of 
the
all-locales/all-versions package from the download page.  > Notes: I
will give examples for Spnish language (es_ES), > change
accordingly. > Â Â Â Â Â Â
       Where it says > "plugin" replace for the actual plugin name. 
> 1. Go to your plugin folder  > and
do next command: « grep -r "local" . » This will show you
where > should the locale files be placed for this
plugin. > 2. If the previous command shows you > this line: « 
bindtextdomain('plugin', SM_PATH . 'locale');
» it means that you > have to place your .po file
at « squirrelmail/locale/es_ES/LC_MESSAGES/plugin.po > 2.1 If the command 
shows you something like: «
bindtextdomain('plugin', SM_PATH . > 'plugins/plugin/locale');
» it means that you have to put your .po file in the > "locale" directory 
inside your "plugin" directory,
where you have to have > or create the structure:
"es_ES/LC_MESSAGES/",  > 3. Look for the .po or
.pot > file provided by the plugin and copy it to the adequate
location (2 or 2.1). > 4. cd to the > directory containing the .po file, edit 
it and change the line
"Content-Type: text/plain; > charset=CHARSET\n" to
"Content-Type: text/plain; charset=ISO-8859-15\n" (or the > character set that 
fits your squirrelmail language setting). > 5. Add the the translations > pairs
(msgid / msgstr) and save. > 6. Check the character
codification of your .po file: > « file -bÂ
 plugin.po » > 6. 1. If you need, convert the
file encoding like > this: « iconv -f UTF-8 -t
ISO-8859-15 plugin.po > plugin.po.iso » >
7. > « mv plugin.po.iso plugin.po
» > 8. finally binarize your .po file:
« > msgfmt -o plugin.mo plugin.po
» /change options): 
https://lists.sourceforge.net/lists/listinfo/squirrelmail-users >   --  Paul 
Lesniewski SquirrelMail Team Please support Open Source
Software by donating to SquirrelMail! 
http://squirrelmail.org/donate_paul_lesniewski.php 
-- 
Check out the
vibrant tech community on one of the world's most  engaging tech sites, 
SlashDot.org! http://sdm.link/slashdot -
squirrelmail-users mailing list Posting guidelines: 
http://squirrelmail.org/postingguidelines List address: 
squirrelmail-users@lists.sourceforge.net
List archives: http://news.gmane.org/gmane.mail.squirrelmail.user List info
(subscribe/unsubscribe/change options): 
https://lists.sourceforge.net/lists/listinfo/squirrelmail-users





___

            andrés
chandía

NMT |
Dungupeyem | Corlexim

administrador de:

Re: [SM-USERS] Translation issue

2016-12-15 Thread Andrés Chandía


On 2016年12月14日 05:50, "Andrés Chandía"
wrote: >  >  > Hi there, I'm trying to add new translation pairs to an already 
existent
translations set, > actually in Spanish. So, to the
"squirrelmail.po" I have added for instance: >
 > msgid "Move All" > msgstr "Mover todo" > 
> then I run > the command:
>  > msgfmt -o squirrelmail.mo
squirrelmail.po >  > But in
the end > the expresion never appears translated at the mail
interface... any advice?  Sounds like you're translating a string that belongs 
to the
Move All Messages plugin. You shouldn't add strings at random to the main po(t) 
file; find the
string you're looking to translate amongst the po files we provide and go from 
there.  If you
think the string is missing, that's another question.

Thanks, that helped me with the translation of the "Move All Messages" and
"Notes" plugins, but how do I manage those plugins which don't even mentions 
things
about translation or locale like: "Notify", "Small Cal" or "To
Do". For Small Call there is a "smallcal.po" file at the
"squirrelmail/locale/es_ES/LC_MESSAGES" directory, but does not works...

By the way, there are no good instructions on how to translate plugins, so I 
would like to
contribute with some:

Notes: I will give examples for Spnish language (es_ES),
change accordingly.
             Where it says
"plugin" replace for the actual plugin name.
1. Go to your plugin folder 
and do next command: « grep -r "local" . » This will show you where
should the locale files be placed for this plugin.
2. If the previous command shows you
this line: « bindtextdomain('plugin', SM_PATH . 'locale'); » it means that you
have to place your .po file at « 
squirrelmail/locale/es_ES/LC_MESSAGES/plugin.po
2.1 If the command shows you something like: « bindtextdomain('plugin', 
SM_PATH .
'plugins/plugin/locale'); » it means that you have to put your .po file in the
"locale" directory inside your "plugin" directory, where you have to have
or create the structure: "es_ES/LC_MESSAGES/", 
3. Look for the .po or .pot
file provided by the plugin and copy it to the adequate location (2 or 2.1).
4. cd to the
directory containing the .po file, edit it and change the line "Content-Type: 
text/plain;
charset=CHARSET\n" to "Content-Type: text/plain; charset=ISO-8859-15\n" (or the
character set that fits your squirrelmail language setting).
5. Add the the translations
pairs (msgid / msgstr) and save.
6. Check the character codification of your .po file:
« file -b  plugin.po »
6. 1. If you need, convert the file encoding like
this: « iconv -f UTF-8 -t ISO-8859-15 plugin.po > plugin.po.iso »
7.
« mv plugin.po.iso plugin.po »
8. finally binarize your .po file: «
msgfmt -o plugin.mo plugin.po »

Thanks

___
             andrés
chandía

NMT |
Dungupeyem | Corlexim

administrador de:
Parles.upf | Amind
terapia | Mapuche koyaktu | Nocando |
mail: ONG Mapuche koyaktu | Psicoaching |
P No imprima innecesariamente. ¡Cuide el medio ambiente!
--
Check out the vibrant tech community on one of the world's most 
engaging tech sites, SlashDot.org! http://sdm.link/slashdot
-
squirrelmail-users mailing list
Posting guidelines: http://squirrelmail.org/postingguidelines
List address: squirrelmail-users@lists.sourceforge.net
List archives: http://news.gmane.org/gmane.mail.squirrelmail.user
List info (subscribe/unsubscribe/change options): 
https://lists.sourceforge.net/lists/listinfo/squirrelmail-users


Re: [SM-USERS] Translation issue

2016-12-14 Thread Andrés Chandía


Thanks Jürgen, but it didn't help, I tried twice and I also tried cleaning 
cache,
but nothing.



On 14.12.2016 14:50, "Andrés
Chandía" wrote: > then I run the command: >  > msgfmt -o squirrelmail.mo
squirrelmail.po >  > But in
the end the expresion never appears translated at the mail interface... any 
advice?  I
have seen this a number of times, too -- sometimes the change seems to be 
effective
immediately, sometimes not. Restarting the Apache process has always helped.  
Regards,
Jürgen.  --  
Tel +49.30.838-50740 Fax -450740 Zentraleinrichtung fuer Datenverarbeitung, 
Supplemental
Imputer Freie Universitaet Berlin, Fabeckstrasse 32, 14195 Berlin, DE




___

            andrés
chandía

NMT |
Dungupeyem | Corlexim

administrador de:
Parles.upf | Amind
terapia | Mapuche koyaktu | Nocando |
mail: ONG Mapuche koyaktu | Psicoaching |
P No imprima innecesariamente. ¡Cuide el medio ambiente!
--
Check out the vibrant tech community on one of the world's most 
engaging tech sites, SlashDot.org! http://sdm.link/slashdot
-
squirrelmail-users mailing list
Posting guidelines: http://squirrelmail.org/postingguidelines
List address: squirrelmail-users@lists.sourceforge.net
List archives: http://news.gmane.org/gmane.mail.squirrelmail.user
List info (subscribe/unsubscribe/change options): 
https://lists.sourceforge.net/lists/listinfo/squirrelmail-users


[SM-USERS] Translation issue

2016-12-14 Thread Andrés Chandía


Hi there, I'm trying to add new translation pairs to an already existent 
translations set,
actually in Spanish. So, to the "squirrelmail.po" I have added for instance:

msgid "Move All"
msgstr "Mover todo"

then I run
the command:

msgfmt -o squirrelmail.mo squirrelmail.po

But in the end
the expresion never appears translated at the mail interface... any advice?


___

            andrés
chandía

NMT |
Dungupeyem | Corlexim

administrador de:
Parles.upf | Amind
terapia | Mapuche koyaktu | Nocando |
mail: ONG Mapuche koyaktu | Psicoaching |
P No imprima innecesariamente. ¡Cuide el medio ambiente!
--
Check out the vibrant tech community on one of the world's most 
engaging tech sites, SlashDot.org! http://sdm.link/slashdot
-
squirrelmail-users mailing list
Posting guidelines: http://squirrelmail.org/postingguidelines
List address: squirrelmail-users@lists.sourceforge.net
List archives: http://news.gmane.org/gmane.mail.squirrelmail.user
List info (subscribe/unsubscribe/change options): 
https://lists.sourceforge.net/lists/listinfo/squirrelmail-users


Re: [SM-USERS] PHP5 -> PHP7 with SquirrelMail 1.4.22 causes large quantity of error_log warnings

2016-07-10 Thread Andrés Chandía


The answer I got from Paul Lesniewski was:

SquirrelMail has
not yet been updated to work with PHP 7

and this was on May, 2nd, I don't
know if this status has changed, but I'm in the same situation

check:

http://readlist.com/lists/lists.sourceforge.net/squirrelmail-users/2/12332.html

So if you find further solutions please share...

thanks


Moved my
working SquirrelMail 1.4.22 installation/config to the new  Ubuntu 16.04 LTR 
platform.  Now
occasionally INBOX message lines are  missing [From and/or Subject will be 
blank, the line
with Date istill  shows] and I see these messages in my Apache 2.4 error_log:  
[Sat Jul 09
22:11:22.905334 2016] [:error] [pid 18805] [client  50.46.232.213:41874] PHP 
Warning:
*preg_replace()*: The */e modifier* is  no longer supported, use 
*preg_replace_callback*
instead in  /home/www/public/squirrelmail/functions/*mime.php on line 705*, 
referer:  https://mydomain.com/squirrelmail/src/webmail.php
 [Sat Jul 09 22:11:22.930801 2016] [:error] [pid 18805] [client  
50.46.232.213:41874] PHP
Warning: *preg_replace()*: The */e modifier* is  no longer supported, use
*preg_replace_callback* instead in  
/home/www/public/squirrelmail/functions/decode/*utf_8.php
on line 77*,  referer: https://mydomain.com/squirrelmail/src/webmail.php
[Sat Jul 09 22:11:22.930816 2016] [:error] [pid 18805] [client  
50.46.232.213:41874] PHP
Warning: *preg_replace()*: The */e modifier* is  no longer supported, use
*preg_replace_callback* instead in  
/home/www/public/squirrelmail/functions/decode/*utf_8.php
on line 82*,  referer: https://mydomain.com/squirrelmail/src/webmail.php
[Sat Jul 09 22:11:22.930827 2016] [:error] [pid 18805] [client  
50.46.232.213:41874] PHP
Warning: *preg_replace()*: The */e modifier* is  no longer supported, use
*preg_replace_callback* instead in  
/home/www/public/squirrelmail/functions/decode/*utf_8.php
on line 87*,  referer: https://mydomain.com/squirrelmail/src/webmail.php
 Good news is it looks like only 4 lines in two files containing  
preg_replace() need to be
modified for PHP7 to use a   preg_replace_callback().  I can edit the files 
myself if I know
what to  type.  Anybody solved this yet?  What is the exact format of the new 
preg_replace_callback() function for these four source code lines?  I spent 
over an hour
searching the web and SquirrelMail mailing list  archives and didn't find 
anything I can use
to solve this issue. Now I'm  asking for help!  BTW, my users like SquirrelMail 
and are
patiently  waiting for me to find an answer.  * Installation Versions*:  - 
*SquirrelMail
1.4.22 *Plugin's:* *  + administrator+ calendar+ fortune+ gpg+ 
html_mail+
spamcop+ squirrelspell  /Checking PHP configuration/...  PHP version 
7.0.4-7ubuntu2.1
OK.  Running as www-data(33) / www-data(33)  display_errors:  
error_reporting:
22527  variables_order OK: GPCS.  PHP extensions OK. Dynamic loading is 
disabled.   
... Congratulations, your SquirrelMail setup looks fine to me!  - *PHP 
7.0.4-7ubuntu2.1* (cli)
( NTS )  Copyright (c) 1997-2016 The PHP Group  Zend Engine v3.0.0, 
Copyright (c)
1998-2016 Zend Technologies  with Zend OPcache v7.0.6-dev, Copyright 
(c) 1999-2016, by
Zend  Technologies  - Apache Server version: *Apache/2.4.18 (Ubuntu)*  
Server built:  
2016-04-15T18:00:57  - Dovecot IMAP  - Frontier.com SMTP server  - OS: Ubuntu 
Server / Ubuntu
Desktop 16.04 LTR  - SqurrelMail 1.4.22 installed manually from tar package 
many years ago, 
and still working, except as noted.  - Firefox 47.0 browser   Thank you, Craig 
Craig Arno -
Signature Block 
 
-- 
Attend Shape:
An AT Tech Expo July 15-16. Meet us at AT Park in San Francisco, CA to 
explore
cutting-edge tech and listen to tech luminaries present their vision of the 
future. This
family event has something for everyone, including kids. Get more information 
and register
today. http://sdm.link/attshape -
squirrelmail-users mailing list Posting guidelines: 
http://squirrelmail.org/postingguidelines
List address: squirrelmail-users@lists.sourceforge.net
List archives: http://news.gmane.org/gmane.mail.squirrelmail.user
List info (subscribe/unsubscribe/change options): 
https://lists.sourceforge.net/lists/listinfo/squirrelmail-users




___
            andrés
chandía

NMT | Dungupeyem | Corlexim

administrador de:
parles.upf | delingua | amind
terapia | mapuche koyaktu | mail ong mapuche koyaktu | mail psicoaching |
P No imprima innecesariamente. ¡Cuide el medio ambiente!
--
Attend Shape: An AT Tech Expo July 15-16. Meet us at AT Park in San
Francisco, CA to explore cutting-edge tech and listen to tech luminaries
present their vision of the future. This family event has something for

Re: [SM-USERS] Occasional Empty fields in 'From' and 'Subject' after migrating to new server

2016-07-04 Thread Andrés Chandía


When you install squirrelmail it does not install php, php is installed with 
your ubuntu
distribution, the last ubuntu has php7 by default.



___
            andrés
chandía

NMT | Dungupeyem | Corlexim

administrador de:
parles.upf | delingua | amind
terapia | mapuche koyaktu | mail ong mapuche koyaktu | mail psicoaching |
P No imprima innecesariamente. ¡Cuide el medio ambiente!
--
Attend Shape: An AT Tech Expo July 15-16. Meet us at AT Park in San
Francisco, CA to explore cutting-edge tech and listen to tech luminaries
present their vision of the future. This family event has something for
everyone, including kids. Get more information and register today.
http://sdm.link/attshape
-
squirrelmail-users mailing list
Posting guidelines: http://squirrelmail.org/postingguidelines
List address: squirrelmail-users@lists.sourceforge.net
List archives: http://news.gmane.org/gmane.mail.squirrelmail.user
List info (subscribe/unsubscribe/change options): 
https://lists.sourceforge.net/lists/listinfo/squirrelmail-users


Re: [SM-USERS] Occasional Empty fields in 'From' and 'Subject' after migrating to new server

2016-07-04 Thread Andrés Chandía



Check this, maybe you will have to wait for SM to be ready for php7, like me

http://comments.gmane.org/gmane.mail.squirrelmail.user/39990


___
            andrés
chandía

NMT | Dungupeyem | Corlexim

administrador de:
parles.upf | delingua | amind
terapia | mapuche koyaktu | mail ong mapuche koyaktu | mail psicoaching |
P No imprima innecesariamente. ¡Cuide el medio ambiente!
--
Attend Shape: An AT Tech Expo July 15-16. Meet us at AT Park in San
Francisco, CA to explore cutting-edge tech and listen to tech luminaries
present their vision of the future. This family event has something for
everyone, including kids. Get more information and register today.
http://sdm.link/attshape
-
squirrelmail-users mailing list
Posting guidelines: http://squirrelmail.org/postingguidelines
List address: squirrelmail-users@lists.sourceforge.net
List archives: http://news.gmane.org/gmane.mail.squirrelmail.user
List info (subscribe/unsubscribe/change options): 
https://lists.sourceforge.net/lists/listinfo/squirrelmail-users


[SM-USERS] squirrelmail characters problems after upgrading ubuntu server from 12.04 to 12.10

2012-11-12 Thread Andrés Chandía


Hi there, I resend this mail because I havn't been able to find a solution.

The
problems arise after upgrading from ubuntu server 12.04 to 12.10:

All the arriving
mails from sender which name has accents or other likely characters, do not 
display the
sender, same hapens if character is in subject (subject is not diplayed), 
eventhough, if the
body contains this kind of characters, these are seen with no problem.

At my
address book all the names containing such characters desappeared, not the mail 
field, but
only the name one, and it cannot be edited. I tried editing the
/var/lib/squirrelmail/data/and...@chandia.net.abook, but the visualization 
results
in strange characters, I've tried converting the file from iso-8859-1 to utf8, 
but
nothing...

Another problem is that when answering, the original massage is erased
if there is an accented character, and messages that are not html, erase the 
lines
where there is a word with accented characters.!!!

any idea of what could be
happening, any help?

thanks in advance



___
            andrés
chandía

P No imprima
innecesariamente. ¡Cuide el medio ambiente!
--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_nov-
squirrelmail-users mailing list
Posting guidelines: http://squirrelmail.org/postingguidelines
List address: squirrelmail-users@lists.sourceforge.net
List archives: http://news.gmane.org/gmane.mail.squirrelmail.user
List info (subscribe/unsubscribe/change options): 
https://lists.sourceforge.net/lists/listinfo/squirrelmail-users

[SM-USERS] [Fwd: problems after upgrading ubuntu server from 12.04 to 12.10]

2012-11-02 Thread Andrés Chandía


Hi there, I have next problem after upgrading from ubuntu server 12.04 to 12.10

all
the arriving mails from sender which name has accents or other likely 
characters, do not
display the sender, same hapens if character is in subject (subject is not 
diplayed),
eventhough, if the body contains this kind of characters, these are seen with 
no problem.
At my address book all the names containing such characters desappeared, not 
the mail field,
but only the name one and can not be edited. I tried editing the
/var/lib/squirrelmail/data/and...@chandia.net.abook, but the visualization 
results
in strange characters, I've tried converting the file from iso-8859-1 to utf8, 
but
nothing...


Another problem is that at the answer the original massage is
erased if there is an accented character.

messages that are not html, erase the
lines where there is a word with accented characters.!!!

any idea of
what could be happening, any help?

thanks in advance





___
            andrés
chandía

P No imprima
innecesariamente. ¡Cuide el medio ambiente!
Sorry, just for your information:messages that are not html, erase the
lines where there is a word with accented characters.!!!Another
problem is that at the answer the original massage is erased if there is an accented
character.Hi there, I have next problem after upgrading from ubuntu server
12.04 to 12.10all the arriving mails from sender which name has accents or other
likely characters, do not display the sender, same hapens if character is in subject (subject
is not diplayed), eventhough, if the body contains this kind of characters, these are seen
with no problem.At my address book all the names containing such characters desappeared,
not the mail field, but only the name one and can not be edited. I tried editing the
/var/lib/squirrelmail/data/and...@chandia.net.abook, but the visualization results
in strange characters, I've tried converting the file from iso-8859-1 to utf8, but
nothing...any idea of what could be happening, any help?thanks
in advance___andrs
chandaP No imprima
innecesariamente. Cuide el medio ambiente!--
LogMeIn Central: Instant, anywhere, Remote PC access and management.
Stay in control, update software, and manage PCs from one command center
Diagnose problems and improve visibility into emerging IT issues
Automate, monitor and manage. Do more in less time with Central
http://p.sf.net/sfu/logmein12331_d2d-
squirrelmail-users mailing list
Posting guidelines: http://squirrelmail.org/postingguidelines
List address: squirrelmail-users@lists.sourceforge.net
List archives: http://news.gmane.org/gmane.mail.squirrelmail.user
List info (subscribe/unsubscribe/change options): 
https://lists.sourceforge.net/lists/listinfo/squirrelmail-users

[SM-USERS] Plugin - Notes

2011-06-30 Thread Andrés Chandía


My question in symple, how can I translate and how do apply the translation of 
the
NOTES module?

El Vie, 20 de Agosto de 2010, 6:49, nethubonline
escribió:


Paul Lesniewski wrote:

 Thanks for this
info.  Unfortunately, I am unable to do anything more
 about this until I can
reliably retrieve your sample email.  The
 attachment you originally sent is corrupt
for me when I download it.


Sorry for the mistake about the attachment,
here I upload a zipped file
which contains 3 sample to cause the squirrelmail load
continuously:

http://old.nabble.com/file/p29488699/problem_emails.zip
problem_emails.zip





___
andrés
chandía

P No imprima
innecesariamente. ¡Cuide el medio ambiente!
--
All of the data generated in your IT infrastructure is seriously valuable.
Why? It contains a definitive record of application performance, security 
threats, fraudulent activity, and more. Splunk takes this data and makes 
sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-d2d-c2-
squirrelmail-users mailing list
Posting guidelines: http://squirrelmail.org/postingguidelines
List address: squirrelmail-users@lists.sourceforge.net
List archives: http://news.gmane.org/gmane.mail.squirrelmail.user
List info (subscribe/unsubscribe/change options): 
https://lists.sourceforge.net/lists/listinfo/squirrelmail-users

Re: [SM-USERS] unsafe_image_rules

2010-08-23 Thread Andrés Chandía


It works perfectly well, Thanks a lot.

___
andrés
chandía


El
Lun, 23 de Agosto de 2010, 14:04, kwadronaut escribió:
 Hello,
 
 On 23/08/10 12:20, Andrés Chandía wrote:
 At a
mail that contains unsafe images, the option of showing the images
 works well,
but when the option Always trust images from this sender
 appears and
I click it, it gives me back this error:


   Not
Found

 The requested URL
/plugins/unsafe_image_rules/add.phpbr
 /bDeprecated/b:
Function eregi() is deprecated in

b/usr/share/squirrelmail/plugins/unsafe_image_rules/functions.php/b
 on line b335/bbr / was not found on this server.


 Replace the function with preg_match. Please test this patch, ameliorate

if necessary and give feedback, I haven't tested this myself:
 $ cat
functions.php.patch
 335c335
  while (eregi('(' .
$Email_RegExp_Match . ')', $str, $hits)) {
 ---

while(preg_match('/'.$Email_RegExp_Match.'/i', $str, $hits)) {
 
 According
to the readme the current maintainer is Fredrik Jervfors,
 maybe you can ask him/her
for a comment too.
 
 have a nice day,
 kwadronaut

--looking for jobs-
 

--
This SF.net email is sponsored by 

Make an app they can't live without
Enter the BlackBerry Developer Challenge
http://p.sf.net/sfu/RIM-dev2dev -
squirrelmail-users mailing list
Posting guidelines: http://squirrelmail.org/postingguidelines
List address: squirrelmail-users@lists.sourceforge.net
List archives: http://news.gmane.org/gmane.mail.squirrelmail.user
List info (subscribe/unsubscribe/change options): 
https://lists.sourceforge.net/lists/listinfo/squirrelmail-users

Re: [SM-USERS] Cannot attach multiple files

2010-04-09 Thread Andrés Chandía


Solved.
I could fix it the next way:

1.- Get Last stable release of
squirrelmail
wget
http://squirrelmail.org/countdl.php?fileurl=http%3A%2F%2Fprdownloads.sourceforge.net%2Fsquirrelmail%2Fsquirrelmail-1.4.20.tar.gz

2.- untar it and re-tar it with appropiate name
tar -zxvf
squirrelmail-1.4.20.tar.gz
mv squirrelmail-1.4.20 squirrelmail
tar czf
squirrelmail.tar.gz squirrelmail

3.- backup previous installation
tar czf
etc.squirrelmail.tar.gz /etc/squirrelmail
tar czf usr.share.squirrelmail.tar.gz
/usr/share/squirrelmail

4.- replace squirrelmail for new version
cd
/usr/share
tar czf ../path to squirrelmail new version/squirrelmail.tar.gz

5.-
re apply necessary patches.

6.- be happy!!




___
andrés
chandía




--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
-
squirrelmail-users mailing list
Posting guidelines: http://squirrelmail.org/postingguidelines
List address: squirrelmail-users@lists.sourceforge.net
List archives: http://news.gmane.org/gmane.mail.squirrelmail.user
List info (subscribe/unsubscribe/change options): 
https://lists.sourceforge.net/lists/listinfo/squirrelmail-users


[SM-USERS] Cannot attach multiple files

2010-04-08 Thread Andrés Chandía



Problem description:
Files can be browsed for attachment and if the message is
sent, it goes out with the browsed
file attached, but if the add button is clicked there
is no action at all, so messages can be
sent only with one attachment (the browsed one)
but not with multiple attached files.

System Environment
Config File Version
1.4.0
SquirrelMail Version 1.4.19 (2:1.4.19-1ubuntu0.1)
PHP Version
5.2.10-2ubuntu6.4

Ubuntu versions of plugins:
squirrelmail-compatibility
2.0.14-1
squirrelmail-decode 1.2-1
squirrelmail-locales 1.4.13-20071220-1
squirrelmail-lockout 1.6-1
squirrelmail-logger 2.3-3
squirrelmail-quicksave
2.4.2-2
squirrelmail-sent-confirmation 1.6-1
squirrelmail-spam-buttons 2.3-1
squirrelmail-viewashtml 3.8-2

Last stable versions of next plugins:
abook_group_pagination
add_address
administrator
archive_mail
autocomplete
calendar
change_sqlpass
check_quota
contactclean
delete_move_next
filters
html_mail
image_buttons
mark_read
message_details
move_all_messages
msg_flags
newmail
notify
picons
reply_buttons
select_language
select_range
sent_subfolders
smallcal
spamcop
squirrel_logger
squirrelspell
timeout_user
translate
unsafe_image_rules
vlogin

Web Server Apache/2.2.12
(Ubuntu)
SMTP Server Postfix 2.6.5-3
OS Ubuntu Server 9.10 -
2.6.31-20-generic-pae



brbr___brnbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;andrés
chandíabra href=http://www.chandia.net;
target=_blank title=This external link will
open in a new
windowimg
src=http://www.chandia.net/sites/default/files/images/chandia.netd.png;
alt=
border=0/abr



--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
-
squirrelmail-users mailing list
Posting guidelines: http://squirrelmail.org/postingguidelines
List address: squirrelmail-users@lists.sourceforge.net
List archives: http://news.gmane.org/gmane.mail.squirrelmail.user
List info (subscribe/unsubscribe/change options): 
https://lists.sourceforge.net/lists/listinfo/squirrelmail-users


[SM-USERS] Cannot attach multiple files

2010-04-08 Thread Andrés Chandía
Problem description:
Files can be browsed for attachment and if the message is sent, it goes out 
with the browsed
file attached, but if the add button is clicked there is no action at all, so 
messages can be
sent only with one attachment (the browsed one) but not with multiple attached 
files.

System Environment
Config File Version 1.4.0
SquirrelMail Version 1.4.19 (2:1.4.19-1ubuntu0.1)
PHP Version 5.2.10-2ubuntu6.4

Ubuntu versions of plugins:
squirrelmail-compatibility 2.0.14-1
squirrelmail-decode 1.2-1
squirrelmail-locales 1.4.13-20071220-1
squirrelmail-lockout 1.6-1
squirrelmail-logger 2.3-3
squirrelmail-quicksave 2.4.2-2
squirrelmail-sent-confirmation 1.6-1
squirrelmail-spam-buttons 2.3-1
squirrelmail-viewashtml 3.8-2

Last stable versions of next plugins:
abook_group_pagination
add_address
administrator
archive_mail
autocomplete
calendar
change_sqlpass
check_quota
contactclean
delete_move_next
filters
html_mail
image_buttons
mark_read
message_details
move_all_messages
msg_flags
newmail
notify
picons
reply_buttons
select_language
select_range
sent_subfolders
smallcal
spamcop
squirrel_logger
squirrelspell
timeout_user
translate
unsafe_image_rules
vlogin

Web Server Apache/2.2.12 (Ubuntu)
SMTP Server Postfix 2.6.5-3
OS Ubuntu Server 9.10 - 2.6.31-20-generic-pae



brbr___brnbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp;andrés
chandíabra href=http://www.chandia.net; target=_blank title=This 
external link will
open in a new windowimg
src=http://www.chandia.net/sites/default/files/images/chandia.netd.png; alt=
border=0/abr


--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
-
squirrelmail-users mailing list
Posting guidelines: http://squirrelmail.org/postingguidelines
List address: squirrelmail-users@lists.sourceforge.net
List archives: http://news.gmane.org/gmane.mail.squirrelmail.user
List info (subscribe/unsubscribe/change options): 
https://lists.sourceforge.net/lists/listinfo/squirrelmail-users