Author: Sathiyamoorthy S

  • How to avoid your email going to spam

    How to avoid your email going to spam

    Everyone raising question that ‘How to avoid your email going to span? Getting unwanted junk of mail flooding into inbox on daily basis. Yes, email filtering mandatory in exchange server including public service as Gmail, Outlook, Yahoo or any. SPF, DKIM and DMARC playing big role to tag your email healthy and secure to receivers…

  • Export Json to Csv in PowerShell

    In Big-data era, the data are stored in flat files which is supporting wider range of technology and systems. Json is serialized data to feeds into multiple development language and automation scripts in devOps system. Export Json to Csv would common question whoever doing data across platform, here are the simple script to claim your…

  • Replace permission command line

    Replace permission command line

    Migration is always popping an issues to bring the service online. Moreover folder permission playing a big role in all scenario; Apparently spent lot of time to fix data migration issues from Windows 2008 server to Windows 2012 server. So replace permission required to complete the migration. Scenario: Application data needs to be migrated (folders…

  • Remove Blacklist Domain SPAMRATS

    Remove Blacklist Domain SPAMRATS

    RATS Dyna block list is common to avoid Trojan and bots sending mail to recipients. SPAMRATS detect unhealthy and invalid rDNS records entries in server. Remove Blacklist from span filter domain, add PTR record in DNS server. In case of on-perm outgoing mail apparently get the IP from ISP. In my scenario, mail service has…

  • Torrent Downloader for Mac Catalina

    Torrent Downloader for Mac Catalina

    I have been updated Catalina recently after all most of the application and custom configuration are not functioning. The build macOS 10.15.1 Catalina more secure than previous release. Also system ‘root’ been default as read only (Writeable: No) state. Read more about Catalina release note Due to security reason uTorrent, BitTorrent client applications stopped working…

  • Unexpectedly deleted search index entries

    SharePoint 2019 security CVE-2019-1330 patch has been released in October’19. The patch causing search indexes the crawl of content that has many links fails because of the maximum allowable links exceeds. So multiple fails, the search index entries for the content are deleted unexpectedly. So ContentPIMaxNumLinks properties should be updated accordingly with below SharePoint 2019…

  • HTTPS Rewrite Linux/Hosting .htaccess

    HTTPS Rewrite Linux/Hosting .htaccess

    Discussed HTTP to HTTPS rewrite rule for windows platform IIS on previous post.  If the web server as linux based environment that can be archived and play with .htaccess file. .htaccess file has always in hidden attribute so edit the file with vi editor sudo vi .htaccess Add the below code of mod_rewrite.c module to make…

  • HTTP to HTTPS rewrite rule

    Typically http to https configuration would be common as the canonical name redirect either http:// or http://www to https.  This may be the site requirement as https:// or https://www In our scenario, rewrite rule could be managed to https://www with canonical name. Whenever client end entering the URL as http://www.sathiya.io or http://sathiya.io would be automatically…

  • SharePoint Server 2019 Public Preview

    As expected Microsoft introduced SharePoint server 2019 product in May 2018 SharePoint conference. The product has more refined feature in terms of user experience, development stuff, security concerns and scalable with Hybrid collaboration environments Now, public preview available to experience the complete features of next milestone. SharePoint Server 2019 Public Preview Product Build Number Package…

  • Validate Active Directory (AD) Credentials

    To configuring service account for the application after creating generated password causing issue many times, needs to validate active directory (AD) credentials before configuring it. Because enterprise level policy would disable service account with bad password attempts. The PowerShell script helps to validate efficiently. <# .DESCRIPTION Validate AD Account credential .NOTES Author: Sathiya.io #> function…