Issue not with snap, command line ssmtp does not send as well

Posts
-
RE: Cant get Rocket.Chat Snap to send SMTP emails
-
Cant get Rocket.Chat Snap to send SMTP emails
I am using third party service and tried both
SMTP2GO
and
sendinblueAnd It is showing icon that emails got send but not receiving! Digital ocean + ubuntu 18 18.04
-
RE: Calling Minecraft Experts - Modded Minecraft Server Booting User
Did you try with UFW inactive ?
-
RE: Exploring VitalPBX
Centos Latest 7 ? like what version are you running , i tend to use rolling ISO:
1902-01.iso
https://buildlogs.centos.org/rolling/7/isos/x86_64/?C=M;O=DAlso what is the Asterisk Version ?
-
RE: SAMIT on Huawei vs US & Google Day Two Recap
Very realistic point of view, I am waiting for what they will do with newer phones, BTW huawei owns middle east market , my phone is nova plus.
-
RE: Why is it called automation?
@Pete-S
The product automation but they need heck a lot of manual labor.
-
RE: Database held for ransom, anyone experience this before?
Yup, restore from backups. ARe you using old Drupal or Wordpress Site or shared hosting like TMD ?
-
RE: Need a script to cleanup a Backblaze B2 bucket
If you can keep the backup locally, then rclone or b2 api can do this, by performing the rules locally then syncing it to the cloud.
If you cant keep them locally due to size, why not create cron rclone dummy rule to sync dummy file to that bucket, this will force it to delete b2 storage cause that dummy file is not existing, you will need to use rclone sync function and not copy.
-
RE: Data check/scrub RAID 1 - how often?
@Pete-S
Monthly or twice a month at night, Scrubbing will check each block and that takes alot of time and performance.
-
RE: Docker for Production Use of Third Party Software
I agree with the black box argument, and harder to maintain.
DevOps and the Death of the System Admin...
-
RE: Suggestions to build a High-End Gaming PC
Anything with ThreadRipper and 32-64 GB RAM, will last you for 5+ years and the Storage/GPU can be easily upgraded. I dont use alot of GPU so something like GTX 1650 will work for me, cause it needs no external power and you can get away with 500W PSU with that.
-
RE: Phishing testing / awareness / training suggestions?
@manxam said in Phishing testing / awareness / training suggestions?:
HFS web server and log IPs that click the hyperlink.
-
RE: WordPress Cutover Main Page Works, but Secondary Pages Do Not
Ok ensure .htaccess file is present and has good permission
try chmod something open to the docroot and chown like www-data:www-data for whole docroot just for test
Use wordpress cli to change the site URL home and URL address to the correct values after site move
define( 'WP_HOME', 'http://example.com' );
define( 'WP_SITEURL', 'http://example.com' )You can use the portable phar
https://gist.github.com/pcsontos/122fceb3d6e6e43da98d
wp-cli.phar option update home 'http://example.com'
wp-cli.phar option update siteurl 'http://example.com' -
RE: Tracking Down an Apache & WordPress Memory Leak
Not sure why it happens. but if you use memcache that will reduce the load on DB and PHP and apache, so that might help
Restore Apache config to default, is PHP running as mod apache ? take it out perhaps the leak is in PHP
-
RE: AMD Vs Intel
After Ryzen, everything AMD released is good. and worth having.
-
RE: If Not WordPress, What's the Alternative
WP autoupdates man by itself, it is super easy and simple.
However I think many folks are moving to self documenting systems or without DB, I never used them but heard of them.
You just have to use WP with like 1-5 plugins, no need for 100, and it will be perfect.
-
RE: virt-manager for Windows
I searched this b4, forget about it. There is none.
-
RE: Windows Server 2019 Need to Download and Run without AV Deleting Files
I made this script cause I dont rely on Windows AV , i rely on my judgement on how not to get Viruses
sc config "wuauserv" start= disabled sc config "Sense" start= disabled sc config "WdNisSvc" start= disabled sc config "WinDefend" start= disabled REG add "HKLM\SYSTEM\CurrentControlSet\services\WinDefend" /v Start /t REG_DWORD /d 4 /f @echo off echo "Remember to gpedit.msc -> Computer Configurations -> Administrative Template -> Windows Component -> Windows Defender -> Turn Off" echo "Remember to gpedit.msc -> Computer Configurations -> Administrative Template -> Windows Component -> File Explorer -> Configure Windows Defender SmartScreenTurn -> Off" echo "REGEDIT = Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System EnableLUA=0" sc stop wuauserv sc stop Sense sc stop WdNisSvc sc stop WinDefend
You dont need all of it, i think you only need
@echo off
echo "Remember to gpedit.msc -> Computer Configurations -> Administrative Template -> Windows Component -> Windows Defender -> Turn Off"
echo "Remember to gpedit.msc -> Computer Configurations -> Administrative Template -> Windows Component -> File Explorer -> Configure Windows Defender SmartScreenTurn -> Off"Try to do the 2 gpedit using command line, I am not sure how then reboot