Any implication with SFRA security config changes? - paypal

A customer using SFRA, any implication on turning off the following setting:
RefArch > Merchant Tools > Site Preferences > Order > Limit Storefront Order Access = No
RefArch > Merchant Tools > Site Preferences > Order > Storefront Order Filter by Customer Session = No
Turning off these settings doesn't interfere with my payment provider integration. Turning on causes orders to be in created state without any payment transaction.

Related

Remove Business Solution Provider (BSP) from Facebook (WhatsApp)

I'm trying to connect directly to WhatsApp API.
I'm already connected using a business solution provider (twilio) but I can't find how to remove it.
I couldn't find any sign for Twilio in my business settings and when I'm trying to use my own number, I have this message.
Thanks
If you go back to Business Manager where you see all the WhatsApp Accounts > click on your WABA (WhatsApp Business Account) > Partners tab > click the delete button to remove sharing your account with the BSP.

TestPlan problem to activate trial period

I would like to use the Azure DevOps Test Plan trial period but, after I've activated it if i go in test plan page, i always see the message:
"You are currently logged in as a user with basic access level and you are seeing this page as you don't have any test plans and test suites created for the selected team."
in the billing page i see:
"Basic + Test Plans - Trial expires in 30 days"
so it seems to be active but not from Test Plan Page
someone has suggestions?
Currently, when you enable the Test Plan, you need to manually switch your user's access level to Basic + Test Plan.
Go to Organization Settings -> Users -> Choose the user that you want to change its access level -> More... -> Change access level -> Choose Basic + Test Plans.

I want to make my gsuit non admin account into noreply account

I am gsuit user, I have created many user accounts from my admin account of gsuit, i want to make one of the user account as a no-reply account,
i.e. when someone sends reply on that account it should automatically get rejected with reject message.
From your G Suite account go to Apps > G Suite > Gmail > Advanced Settings.
Choose the organizational unit to affect, I would recommend to have this users specifically on an organizational unit since by making this change it will affect all of the users within that OU.
After selecting the OU look for the option "Routing" within that option there is another one called the same "Routing"
Click on the "Configure" button.
A popup will appear
For "Messages to affect" select "Inbound"
For "For the above types of messages, do the following" select "Reject message"
In Google Admin (formerly Google Suite) navigate to:
Apps > Google Workspace > Settings for Gmail > Default Routing
Link: https://admin.google.com/ac/apps/gmail/defaultrouting
Add a new rule
(1.) Enter email address: no-reply#domain.com
(2.) Change "Accept message" to "Decline message"
(2.) You can optionally enter a decline message
(3.) Change to "Execute this action for recognized and unrecognized addresses"
Send a test e-mail to this address to see if it works
You should receive a reply Delivery Status Notification (Failure) after a few minutes

Capacity - VSTS - User Privledges

I want to set some Scrum Masters up with privileges to amend the Capacity of team members within a Sprint of a Project:
Which permissions are needed for a basic user to access this? I'm NOT using Azure AD, so just using the Web Portal to setup.
This is for the SaaS Visual Studio Team Services Online.
There are two options to grant permission to edit work item capacity for a certain user.
Option 1: Add the user as a member for the default team
You just need to add the user to the default team, then he/she can edot the work item capacity:
In project Security page (https://account.visualstudio.com/project/_admin/_security) -> select default team (such as Git_Scrum Team in below example) -> Members Tab -> Add -> add the user -> Save changes.
Option 2: Add the user as a member for the Project Administrators group
In project Security page -> select Project Administrators group -> Members Tab -> Add -> add the user -> Save changes.
You could set the user as a team administrator.
https://learn.microsoft.com/en-us/vsts/work/scale/add-team-administrator?view=vsts

How do I disable notification emails in Magento?

How do I disable a particular notification email, for example the welcome email when a user creates an account?
We can disable all email communication in Magento by
Login to Magento backend
Go to the System->Configuration menu.
On the left hand menu under the Advanced tab (at the bottom) select the System menu item.
Select ‘Mail Sending Settings’ from the selection on the right hand side.
Set Disable email communications to
‘Yes’, then no email will send
through Magento.
There is no buit-in ability to disable particular email notifications in Magento. I suggest you to look at the Mage_Core_Model_Email_Template::sendTransactional method. You can overload this class and add check against allowed/disallowed email notifications (based on template name).
Update: you can use extension for disabling specific email notifications in Magento 1.
Also, there is Disable Emails extension for Magento 2.
See:
admin/system_config/edit/section/sales_email/
You can enable/disable all the transaction emails as you want with the exception of the create account email.
I do not suggest that you disable the new account email. This is because it has their login details including password. It is not sent with guest checkout, maybe you need to make your store 'guest checkout only' if that is what you want.
This is a feature in the configuration settings as of Magento ver. 1.9.2.1 (maybe earlier)
System >> Configuration >> Sales Emails >> Enable/disable individual emails.
Magento 2.3:
Stores > Configuration > Advanced (at the bottom of the left vertical menu) > System
Then Mail sending settings > Disable Email Communications: Yes
Also, make sure you clear the cache from System > Cache management
There's another method, using the command line:
php bin/magento config:set system/smtp/disable 1
php bin/magento cache:flush
1 = Disable email sending
0 = Enable email sending
Inspired by #Mage_user 's question I created extension that allows to disable any email notification in Magento. So, #Bizboss you can use it to disable new order email.
In Magento 2.4.2, you can easily navigate to stores > settings > configuration. Then under Sales > Sales emails, you should be able to disable the notifications that you require.