Closed. This question is not about programming or software development. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 5 months ago.
Improve this question
I have configured Microsoft Azure DevOps to build our software and release it automatically. (With the Build and with the release Pipeline)
After the succesful release I have set it up, to send an email to all project-members.
My question is: Can I somehow configure this email?
E.g. I need to remove the "Summary" part. Is this somehow possible with Azure Devops?
Screenshot of current email:
No, currently you can't configure the email templates. there is a popular feature request about it, you can up vote there.
As workaround, you can install the Send Email task, and add it to the release pipeline, in this task you can customize the email.
I know this is old. However, I've been able to modify the email template for standard check-ins.
The TeamFoundation.xsl in the Program Files\Azure**\Application Tier\TFSJobAgent\Transforms\1033 folder is the file to modify. It doesn't take affect immediately. I noted the changes after a server reboot.
Related
Closed. This question is not about programming or software development. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed yesterday.
Improve this question
since 2 months i have problem to restore packages from azure. Logs show me that they have no permissions even though I use correct credential from Azure. My coworkers have the same settings and it works for them.
In Microsoft Visual Studio everything works correct.
this is logs
this is sources
this is file NuGet.Config
I can't restore packages from source Galaxy
Can someone help?
I try reinstall Rider, change credential, I check permissions on azure and have the same as my coworkers.
Closed. This question is not about programming or software development. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 11 days ago.
This post was edited and submitted for review 7 days ago and failed to reopen the post:
Original close reason(s) were not resolved
Improve this question
I am currently setting up an IRedMail server, however, I have encountered some issues that I cannot solve. All the questions are listed below and any help will be appreciated.
I want to know how to back up emails all the employees sent out and received so I can quickly restore all the data since there are modifications to my cloud server. Also, I want to have an extra backup of them.
Employees cannot reset their passwords on their client webpage and it prompts me that the server is lacking encryption, do I need to install something on my Debian server?
I want to add a password reset function on IRedMail, which means employees can reset their passwords via email or telephone number receiving their verification code, what do I need to do?
I tried to check on the official IRedMail documentation but nothing works. I also searched on google, however, I only received minor pages which are not working as well.
Some error pages are shown below:
Closed. This question is not about programming or software development. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 6 days ago.
Improve this question
I need to create a dev account on https://dev.azure.com, not sure how can I create it, some of my coworkers had created one using my company email, but I got the error:
You can’t sign up here with a work or school email address. Use a personal email address, such as Gmail or Yahoo!
I feel stupid, not sure how can I create my dev account or is there a different process to do this, I created a personal outlook account, but I didn't see the token account token section shown in Personal access token
Is there a different process to create a dev account in azure dev ops? thank you!
Closed. This question is not about programming or software development. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 4 days ago.
Improve this question
How can I create an unlimited account on Azure Video Indexer and access it from videoindexer.ai?
My Observation
Although a solid service, some things are quite complicated, e.g.,
sign up/in and account management, where a single email address
could create different accounts based on whether the
authentication was done with AAD or Personal Microsoft or Google
account.
The workflow seems confusing for an Azure newbie. A first time user
should just be able to create an unlimited account without going down the
rabbit hole reading different disconnected documentations which are
usually not helpful.
I created unlimited (paid) accounts but couldn't find them on videoindexer.ai. I had to switch between tenants to resolve the issue.
Reference: https://learn.microsoft.com/en-us/azure/azure-video-indexer/switch-tenants-portal
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
One doubt I have is since in my old project whenever we used to write shell scripts on thee server, we just used various mail utilities of linux (sendmail, mail). We never configured any SMTP.
Suppose I have a new server with all these utilities installed, should I worry about configuring smtp?
Usually you can use typical cli utilities without any configuration required, provided you have sendmail installed (or something compatible) and your network configuration is ok. That is because the responsible server the utility has to use to send the email can be retrieved via DNS lookup.
This is different however if you want to use an outgoing smtp server, then you have to configure which one and how it can be used. This makes a lot of sense, since it allows more fine grained control and can prevent certain unwanted message details getting accepted like for example an invalid sender address. Also it can help improve the acceptance of your message by remote smtp servers which might not always work when your network setup is non-trivial.