Re: [opensuse] Help with setting CPU frequency
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 Hello Don, I was trying to reply you directly but comcast refuses to talk with my email server (they require all mail servers to have a PTR record with a valid reverse DNS entry). But to answer your question. Yes the patch is included in the kernel tree. See also this comment and the code below it in drivers/acpi/processor_perflib.c : ... /* ignore_ppc: * -1 -> cpufreq low level drivers not initialized -> _PSS, etc. not called yet * ignore _PPC * 0 -> cpufreq low level drivers initialized -> consider _PPC values * 1 -> ignore _PPC totally -> forced by user through boot param */ static int ignore_ppc = -1; module_param(ignore_ppc, int, 0644); MODULE_PARM_DESC(ignore_ppc, "If the frequency of your machine gets wrongly" \ "limited by BIOS, this should help"); ... which is related to bios_limit. I'm not a developer however and don't understand it ... sorry. Best Regards, I. Petrov On 04/12/2015 02:13 AM, don fisher wrote:
On 04/11/2015 03:56 PM, I.Petrov wrote:
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256
Hello,
For more info regarding the bios_limit setting see here:
http://kernel.opensuse.org/cgit/kernel/commit/?id=e2f74f355e9e2914483db10c05...
Probably the limitation can be ignored with:
echo 1 > /sys/module/processor/parameters/ignore_ppc
or with processor.ignore_ppc=1 as kernel parameter at boot time. But I'm not sure about this.
Best Regards, I. Petrov On 04/12/2015 12:29 AM, don fisher wrote:
Thanks. Has that patch been included in the kernel tree, or as part of openSuse? Thanks again.
Don
-----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQIcBAEBCAAGBQJVKhCpAAoJEH8sJoKRFRU5dFsP/24tN761AiM64VeVTOBY7zxk tG+8PCHHFnXLDCqefedzeOVGgTaKJBTHs5D5fwxZWj+DDzuyBeI5XZgrh10QrqY8 mIXLtpzjrhXOMGuyLVP8dbNjxlEtxwntEOcvxyKPUDx50IDyhAi0irrJ0erbFw9i pzvzA/jjGGGzEsi4BApn6I/7z+Z8Qe1vH/ylt0iMPu8FLWRmdfrDkeUcZLC/Q0zb mL8+X2FpeaeRNGbKz3BRqoOjyU/Plo9IZByf+iNITWVfr/E4mq1GIdavdAPBxBJW PoszdyExC5nuawHCLqgdatAuUE7ka75I4cASMhWB4Wq502KyQs9FLpTTXmB7xSx6 ZAJ+PXUmANTzsIjKi0udMEIIXXBJcHAZsXMIY5iQVIz/nCsCXibQ/ex9NU7CLstX CjsSYZzRyosrt5sT/75EQUjhLaK+QoEouXfBPWhMnl1YyzyxIDZh0iEkPk87jt0D XWUj7xqWTpy4O/uyeYxX/+LncMQMhKTRv4ikwaj8nHOSOWuqS80S0uh4BtovyoKh G3VH9jhui9pq7vG1lDcgC+mLuJFRZ8DwH5qGRJvuMoGB8LzYc+ohxIkZswxnD75K PALMKo8+9qYHvo6jiJs8Stt/450CDN9b6oPuSjoH31C9itlrykrjok+CcSShqkHy 245/l2vPymTvFIqtUixN =cSZ7 -----END PGP SIGNATURE----- -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse+owner@opensuse.org
On 04/11/2015 11:28 PM, I.Petrov wrote:
Hello Don,
I was trying to reply you directly but comcast refuses to talk with my email server (they require all mail servers to have a PTR record with a valid reverse DNS entry).
But to answer your question. Yes the patch is included in the kernel tree. See also this comment and the code below it in drivers/acpi/processor_perflib.c : ... /* ignore_ppc: * -1 -> cpufreq low level drivers not initialized -> _PSS, etc. not called yet * ignore _PPC * 0 -> cpufreq low level drivers initialized -> consider _PPC values * 1 -> ignore _PPC totally -> forced by user through boot param */ static int ignore_ppc = -1; module_param(ignore_ppc, int, 0644); MODULE_PARM_DESC(ignore_ppc, "If the frequency of your machine gets wrongly" \ "limited by BIOS, this should help"); ...
which is related to bios_limit. I'm not a developer however and don't understand it ... sorry.
Best Regards, I. Petrov
On 04/12/2015 02:13 AM, don fisher wrote: Thanks for the help, on two fronts. The first:
echo 1 > /sys/module/processor/parameters/ignore_ppc worked well. I need to look into the code to find where it is used to understand a bit more what is going on. It has been since 2006 that I did this kind of stuff, and I had to relearn RPM just to get the patched kernel source code. I did not try the kernel boot parameter because I am still afraid of grub2:-) I also found a command on the internet: watch grep \"cpu MHz\" /proc/cpuinfo which provides a real time view of the current processor speed. Since I wanted the system to be faster more of the time, I changed the up_threshold from 95% to 75%. I can't see that this hurts anything, and the computer spends more time acting faster. I used the command: echo -n 75 > /sys/devices/system/cpu/cpufreq/ondemand/up_threshold The old system feels much better now! The other thing I wanted to thank you for was the Comcast comment. I have tried to join other suse lists, always receiving a message that their emails were refused. They sent that notification message to me on this list. Any idea on how to get the other suse sites to have the reverse DNS entry, or is there another way to get through comcast, a company that I hate with a passion! They are part of that top 1% problem in our economy that you may hear about if you watch BBC. Thanks again, Don -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse+owner@opensuse.org
On 04/11/2015 11:28 PM, I.Petrov wrote:
Hello Don,
I was trying to reply you directly but comcast refuses to talk with my email server (they require all mail servers to have a PTR record with a valid reverse DNS entry).
But to answer your question. Yes the patch is included in the kernel tree. See also this comment and the code below it in drivers/acpi/processor_perflib.c : ... /* ignore_ppc: * -1 -> cpufreq low level drivers not initialized -> _PSS, etc. not called yet * ignore _PPC * 0 -> cpufreq low level drivers initialized -> consider _PPC values * 1 -> ignore _PPC totally -> forced by user through boot param */ static int ignore_ppc = -1; module_param(ignore_ppc, int, 0644); MODULE_PARM_DESC(ignore_ppc, "If the frequency of your machine gets wrongly" \ "limited by BIOS, this should help"); ...
which is related to bios_limit. I'm not a developer however and don't understand it ... sorry.
Best Regards, I. Petrov
On 04/12/2015 02:13 AM, don fisher wrote: Thanks for the help, on two fronts. The first:
echo 1 > /sys/module/processor/parameters/ignore_ppc
worked well. I need to look into the code to find where it is used to understand a bit more what is going on. It has been since 2006 that I did this kind of stuff, and I had to relearn RPM just to get the patched kernel source code. I did not try the kernel boot parameter because I am still afraid of grub2:-) I also found a command on the internet:
watch grep \"cpu MHz\" /proc/cpuinfo
which provides a real time view of the current processor speed. Since I wanted the system to be faster more of the time, I changed the up_threshold from 95% to 75%. I can't see that this hurts anything, and the computer spends more time acting faster. I used the command:
echo -n 75 > /sys/devices/system/cpu/cpufreq/ondemand/up_threshold
The old system feels much better now!
The other thing I wanted to thank you for was the Comcast comment. I have tried to join other suse lists, always receiving a message that their emails were refused. They sent that notification message to me on this list. Any idea on how to get the other suse sites to have the reverse DNS entry, or is there another way to get through comcast, a company that I hate with a passion! They are part of that top 1% problem in our economy that you may hear about if you watch BBC.
Thanks again, Don Hi Use the watch command on cpupower, also part of cpupower is the mperf
On Sun 12 Apr 2015 10:32:03 AM CDT, don fisher wrote: option, I use that to see the boost option kicking in. -- Cheers Malcolm °¿° LFCS, SUSE Knowledge Partner (Linux Counter #276890) SUSE Linux Enterprise Desktop 12 GNOME 3.10.1 Kernel 3.12.39-47-default up 6 days 23:50, 5 users, load average: 0.16, 0.16, 0.15 CPU AMD A4-5150M APU @ 3.3GHz | GPU Richland Radeon HD 8350G -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse+owner@opensuse.org
don fisher wrote:
The other thing I wanted to thank you for was the Comcast comment. I have tried to join other suse lists, always receiving a message that their emails were refused.
Comcrap's email policies are evil. If you have them host your email, you are limited to something like 3-5 addresses. Never mind that you want all of those addresses to go into 1 account -- they want to charge you per/address (regardless of whether or not they all funnel into 1 account). I have no options for ISP other than comcast (or a 1/10th speed DSL option through AT&T), but I pay extra to have my email hosted at a 3rd party service because of my ISP's "craptastic" service! They do the same with my "included" website -- they don't let me edit via HTML but only via their site builder -- so they can divide your website into separate pages -- then they do the same thing there as with email -- you have to pay extra for more than 5 pages. So lame! -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse+owner@opensuse.org
On 04/16/2015 02:31 PM, Linda Walsh wrote:
Comcrap's email policies are evil. If you have them host your email, you are limited to something like 3-5 addresses. Never mind that you want all of those addresses to go into 1 account -- they want to charge you per/address (regardless of whether or not they all funnel into 1 account). I have no options for ISP other than comcast (or a 1/10th speed DSL option through AT&T), but I pay extra to have my email hosted at a 3rd party service because of my ISP's "craptastic" service!
They do the same with my "included" website -- they don't let me edit via HTML but only via their site builder -- so they can divide your website into separate pages -- then they do the same thing there as with email -- you have to pay extra for more than 5 pages. So lame! Linda,
Subscribing to the other suse lists is actually the first real problem I have had with the Comcast email, aside from outages every once and awhile. They did say they would terminate my service once when I was doing some consulting and was downloading data files from LLNL's super computer. They said I had exceeded the 250GB per month limit. I asked about purchasing another line so I could double that limit, and they told me where to go. On the TV side, they are purchasing the sources of program material, NBC, Universal Pictures and Time Warner. Comcast was dubbed the "The Worst Company in America" by The Consumerist in 2014. From Wikipedia. I was OK with the email until I could not join some of the other suse lists. I still do not understand why one list can get through, and the others can't. Is it suse, or Comcast? Don -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse+owner@opensuse.org
On 04/16/2015 02:59 PM, don fisher wrote:
On 04/16/2015 02:31 PM, Linda Walsh wrote:
Comcrap's email policies are evil. If you have them host your email, you are limited to something like 3-5 addresses. Never mind that you want all of those addresses to go into 1 account -- they want to charge you per/address (regardless of whether or not they all funnel into 1 account). I have no options for ISP other than comcast (or a 1/10th speed DSL option through AT&T), but I pay extra to have my email hosted at a 3rd party service because of my ISP's "craptastic" service!
They do the same with my "included" website -- they don't let me edit via HTML but only via their site builder -- so they can divide your website into separate pages -- then they do the same thing there as with email -- you have to pay extra for more than 5 pages. So lame! Linda,
Subscribing to the other suse lists is actually the first real problem I have had with the Comcast email, aside from outages every once and awhile. They did say they would terminate my service once when I was doing some consulting and was downloading data files from LLNL's super computer. They said I had exceeded the 250GB per month limit. I asked about purchasing another line so I could double that limit, and they told me where to go. On the TV side, they are purchasing the sources of program material, NBC, Universal Pictures and Time Warner. Comcast was dubbed the "The Worst Company in America" by The Consumerist in 2014. From Wikipedia.
I was OK with the email until I could not join some of the other suse lists. I still do not understand why one list can get through, and the others can't. Is it suse, or Comcast?
Don
Why bog down your own email with list traffic when there are half a dozen providers that will give you a virtually unlimited imap account for the princely sum of Zero Dollars? Get a free hotmail, google, yahoo, yandex, etc account. There is nothing personal or private on an email list, so no reason to host that stuff yourself. -- After all is said and done, more is said than done. -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse+owner@opensuse.org
don fisher wrote:
Subscribing to the other suse lists is actually the first real problem I have had with the Comcast email, aside from outages every once and awhile. They did say they would terminate my service once when I was doing some consulting and was downloading data files from LLNL's super computer. They said I had exceeded the 250GB per month limit. I asked about purchasing another line so I could double that limit, and they told me where to go.
If you get a business line, I believe, they won't hassle you. At least that's what I've heard, been told, and given my usage, is likely true (i.e. I have an average upload rate of ~1MB/s going, pretty much all the time (busy serving distro's and such, ya know)). That comes to 2.4TB/mo. (assuming my math isn't totally lame), so I'm pretty sure they aren't capping my uploads @ 250GB. My downloads are alot less than that -- maybe 1/5 - 1/15th as much. I'm sure I'm over 250GB d/l on some months, but maybe less on some months, but the upload alone would blow through that limit in less than a week & can't believe they'd only count d/l(?)
I was OK with the email until I could not join some of the other suse lists. I still do not understand why one list can get through, and the others can't. Is it suse, or Comcast?
W/o seeing the bounce messages, unknown. I don't use comcast's mail servers to send out my email, send them out from my static IP direct. Alternate suggestion -- use gmail to sub to the lists and send email out? I'm not sure what requirements they have to allow outgoing or even if it is possible -- but some mail-providers will look at your IMAPS usage and allow outgoing email if you have an active IMAPS session going. Not sure if gmail allows that or not though. I wonder if the FCC will cause any changes that will be beneficial to us? -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse+owner@opensuse.org
On 04/16/2015 04:12 PM, Linda Walsh wrote:
I wonder if the FCC will cause any changes that will be beneficial to us?
Was wondering the same myself. The FCC regs have specific language about fair treatment of edge-connectors (small service providers), which would seemingly include mail servers and private web servers, game servers, ftp, etc etc. Now I'm of two minds on this, as thousands of mail servers will generate a bunch more spam. But on the other hand, essentially banning private mail servers hasn't done jack-shit about curbing spam, and the last ten years of scape-goating private mail servers has been a total and utter failure. Besides, there are better ways to prevent spam than preventing anyone from sending it themselves. -- After all is said and done, more is said than done. -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse+owner@opensuse.org
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 On 2015-04-17 01:12, Linda Walsh wrote:
Alternate suggestion -- use gmail to sub to the lists and send email out? I'm not sure what requirements they have to allow outgoing or even if it is possible -- but some mail-providers will look at your IMAPS usage and allow outgoing email if you have an active IMAPS session going. Not sure if gmail allows that or not though.
Sending and receiving is independent on gmail. You need authentication with both directions. I have my postfix talk with gmail for sending, so they are pretty standard. And yes, you can use them to relay your secondary addresses when sending; you only have to register those addresses first. That's what I do with my opensuse.org alias. - -- Cheers / Saludos, Carlos E. R. (from 13.1 x86_64 "Bottle" (Minas Tirith)) -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (GNU/Linux) iF4EAREIAAYFAlUwT+kACgkQja8UbcUWM1yufAD/YP6o0LatM+gucJ8X+yRs4V/D O5XxTWetcoNDxlCCXsMA/2NtydolunMQ4XLHxtJgOjnaBwf3ync0W6dQLJUNyWzs =xQop -----END PGP SIGNATURE----- -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse+owner@opensuse.org
On 04/16/2015 02:31 PM, Linda Walsh wrote:
don fisher wrote:
The other thing I wanted to thank you for was the Comcast comment. I have tried to join other suse lists, always receiving a message that their emails were refused.
Comcrap's email policies are evil. If you have them host your email, you are limited to something like 3-5 addresses. Never mind that you want all of those addresses to go into 1 account -- they want to charge you per/address (regardless of whether or not they all funnel into 1 account). I have no options for ISP other than comcast (or a 1/10th speed DSL option through AT&T), but I pay extra to have my email hosted at a 3rd party service because of my ISP's "craptastic" service!
They do the same with my "included" website -- they don't let me edit via HTML but only via their site builder -- so they can divide your website into separate pages -- then they do the same thing there as with email -- you have to pay extra for more than 5 pages. So lame!
I have compcast for business, and its almost, but not quite that bad. But I don't trust them with anything, I don't host my email there or my website (for my business). I run my own mailserver for work, but it just forwards to my hosting site for outgoing. I mostly want/need my own mail server for incoming mail, because my customers insist on sending me huge files now and then. The only email I get from my comcast mail box is comcast-outage alerts. I use gmail for mailing lists. -- After all is said and done, more is said than done. -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse+owner@opensuse.org
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 On 2015-04-16 23:31, Linda Walsh wrote:
Comcrap's email policies are evil. If you have them host your email, you are limited to something like 3-5 addresses. Never mind that you want all of those addresses to go into 1 account -- they want to charge you per/address (regardless of whether or not they all funnel into 1 account).
My ISP (telefonica) I understand has dropped email support. Our old addresses keep working, but you can not obtain new ones. New clients get none. I think they tell you to obtain one at gmail instead.
They do the same with my "included" website -- they don't let me edit via HTML but only via their site builder -- so they can divide your website into separate pages -- then they do the same thing there as with email -- you have to pay extra for more than 5 pages. So lame!
At the beginning, my ISP wanted to charge per port... At some point, they also wanted to charge per email sent. And extra if they included attachments. Interestingly, also at the beginning they handed out fixed IPs for everyone. Then they decided to improve and offer a new service: dynamic IP! No kidding, they told clients that it was an improvement over fixed IPs. I was told of a conversation with a high ranking staff, and he was very surprised when told that people used internet to connect computers to one another, and do something else than see webs. And he was unable to comprehend that the usefulness of Internet decreased with non fixed IPs, because then people could not connect to one another without using intermediaries. - -- Cheers / Saludos, Carlos E. R. (from 13.1 x86_64 "Bottle" (Minas Tirith)) -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (GNU/Linux) iF4EAREIAAYFAlUwTTQACgkQja8UbcUWM1zrAAD+MJ48ptbHXHFIFWqfjzXAo5RE /qoEqbcJhAjIDwrMBQYA/jtlGYWUgQEPXk5MiEiD9J4zfVk83U8se52X1g/RKGcr =u7Un -----END PGP SIGNATURE----- -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse+owner@opensuse.org
I.Petrov wrote:
I was trying to reply you directly but comcast refuses to talk with my email server (they require all mail servers to have a PTR record with a valid reverse DNS entry).
Not at all unusual, fyi. -- Per Jessen, Zürich (15.4°C) http://www.hostsuisse.com/ - virtual servers, made in Switzerland. -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse+owner@opensuse.org
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 Hello, Per I didn't say that is unusual. I think however that this is a bad spam prevention practice. Especially when you reject the connection just because the PTR record is missing, or does not resolves to the hostname in the EHLO command. A better approach probably is to flag the mesasge as spam or as suspicious. On 04/12/2015 08:32 PM, don fisher wrote:
... Any idea on how to get the other suse sites to have the reverse DNS entry, or is there another way to get through comcast, a company that I hate with a passion!...
The emails for the OpenSUSE lists to which I'm subscribed to are coming from lists.opensuse.org and the PTR record is valid for this host. The reverse record is managed by the one who owns/manage the respective IP block so if you have any problems you must ask someone from Novell/OpenSUSE team to do this. Don't use the comcast mail services if you hate them so passionately. If you have time you can configure your own mail server (if your lovely ISP company does not block port 25 of course). Best Regards, I. Petrov On 04/12/2015 09:29 PM, Per Jessen wrote:
I.Petrov wrote:
I was trying to reply you directly but comcast refuses to talk with my email server (they require all mail servers to have a PTR record with a valid reverse DNS entry).
Not at all unusual, fyi.
-----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQIcBAEBCAAGBQJVKxbTAAoJEH8sJoKRFRU53Y8QAInXH0gvZoSch76nRsm5tubN rJ73Jv2JE1KXnPd7CeVdSv3dP9zUAlC2YxgJf5Wvar1QZspQQaryI9Gi461uI4Og 1Yw/lFA9jfn9zZiYhcNkiKwg0pXt0QUU4XKE7Pqs3OUpU8djo685+9AoFCgbdal8 PbFnWfH8PrdWSpBbKzK3GupYR3QZevUPSjE7nLjfOXR7Xgpofyjl/QMwEm2FCWPr Ry/LwzNdXhdL0h7q57Zw0hK5y8Nvwx7YvujEgWurrF7LSW99naArcDkjqwGvFU/Z kU0iIwUWXnqnhaZFg7eq78h0N5NOUqJIg4aAZAexfSjE+3g7xolRtiuG28ddD6/Y 12w2gjuz1aunxy4SdCjvQejBD/wJDzsY55vh9gR46Azd8h8bRaxxiubR1UH0WR2W WWXuul1gVBsXvnB0k3dg3oO96/brpgEyXsCMWuCFkHSNAWXURgGIKj8WCCHyZLNg ScxJocg0J46ksh2vtJoNOWl/Waszz7bQZ/bipZ1MRvFlf2V2XUEb3Pi24YTansar 6l1ml4P1FKNYyKz6OVAOUPr3itDBDj3u+A23x1M+SYa9vp+XD301fLlmoabTza1m fa7lEDruQ893fV4WxWGXOInSzIOGaPuDAW9qTMoTtq5XQt3fX+TgDOkPL+l59XLz R8IvAq2CLA1pw5wr5mdB =CQrQ -----END PGP SIGNATURE----- -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse+owner@opensuse.org
I.Petrov wrote:
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256
Hello,
Per I didn't say that is unusual. I think however that this is a bad spam prevention practice.
I mistook your comment to mean you found it unusual, sorry. In my company we fight spam too, but a mailserver with a missing or incorrect reverse mapping is simply dodgy. It indicates poor admin practice, perhaps due to inexperience, carelessness - or simply a trojan.
Especially when you reject the connection just because the PTR record is missing, or does not resolves to the hostname in the EHLO command. A better approach probably is to flag the mesasge as spam or as suspicious.
I agree with that, that's what we do too. However, I also understand the situation of large access providers - get rid of as much spam as possible whilst keeping costs low. -- Per Jessen, Zürich (11.8°C) http://www.dns24.ch/ - your free DNS host, made in Switzerland. -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse+owner@opensuse.org
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 On 2015-04-13 08:47, Per Jessen wrote:
I mistook your comment to mean you found it unusual, sorry. In my company we fight spam too, but a mailserver with a missing or incorrect reverse mapping is simply dodgy. It indicates poor admin practice, perhaps due to inexperience, carelessness - or simply a trojan.
Or someone with a bad ISP. Here I understand it is close to impossible to obtain reverse dns working right.
Especially when you reject the connection just because the PTR record is missing, or does not resolves to the hostname in the EHLO command. A better approach probably is to flag the mesasge as spam or as suspicious.
I agree with that, that's what we do too. However, I also understand the situation of large access providers - get rid of as much spam as possible whilst keeping costs low.
My ISP rejects mail as spam that is not spam, and I can do nothing about it. Sometimes it rejects email I send to myself, to another account (based on content analysis, I believe). - -- Cheers / Saludos, Carlos E. R. (from 13.1 x86_64 "Bottle" (Minas Tirith)) -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (GNU/Linux) iF4EAREIAAYFAlUsUikACgkQja8UbcUWM1z1qgEAktQU/4IjqesgqMUbLg4uzCdY /7rCaE7dt9HT267kPA4A/2d3Ius0puuUky15BVRFZHUcV+2CkcSFuS/cHML89GzK =p2fx -----END PGP SIGNATURE----- -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse+owner@opensuse.org
Carlos E. R. wrote:
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256
On 2015-04-13 08:47, Per Jessen wrote:
I mistook your comment to mean you found it unusual, sorry. In my company we fight spam too, but a mailserver with a missing or incorrect reverse mapping is simply dodgy. It indicates poor admin practice, perhaps due to inexperience, carelessness - or simply a trojan.
Or someone with a bad ISP. Here I understand it is close to impossible to obtain reverse dns working right.
"a bad ISP that (apparently) can't setup reverse DNS" - yes, we have one or two of those too. Not necessarily bad as such, more lazy and inexperienced staff. Same for the admin who chose them though. -- Per Jessen, Zürich (10.5°C) http://www.hostsuisse.com/ - virtual servers, made in Switzerland. -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse+owner@opensuse.org
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 On 2015-04-14 08:28, Per Jessen wrote:
Carlos E. R. wrote:
"a bad ISP that (apparently) can't setup reverse DNS" - yes, we have one or two of those too. Not necessarily bad as such, more lazy and inexperienced staff. Same for the admin who chose them though.
Well, it is the biggest, older, and most powerful ISP here, so not inexperienced. They simply do not want to, or the channels to get such things working are not known or open. - -- Cheers / Saludos, Carlos E. R. (from 13.1 x86_64 "Bottle" (Minas Tirith)) -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (GNU/Linux) iF4EAREIAAYFAlUtfbkACgkQja8UbcUWM1zpGgD+O89EOFp+hsL3tQib5ClfTk2J CRC6ZrtJQGS9fSZfTUgA/33n0LvJQ/zrOqBLzhkSCLncZQKDYQlnYzYVrbeSs5W0 =7tdU -----END PGP SIGNATURE----- -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse+owner@opensuse.org
participants (7)
-
Carlos E. R.
-
don fisher
-
I.Petrov
-
John Andersen
-
Linda Walsh
-
Malcolm
-
Per Jessen