You are running a redmine on your linux and upgrade passenger from 4 to 5.2
Look here
You are running a redmine on your linux and upgrade passenger from 4 to 5.2
Look here
You are searching Smart Card Removal Policy service in a german windows version?
in german called
Richtlinie zum Entfernen der Scmartcard
Look at here when you are looking for a webserver with quic support
http://open.litespeedtech.com/mediawiki/
Apache is sometimes nice and sometimes ugly. Show me the ugly Apache 🙂
I have a webserver with Apache and some files doc, pdf and “oft” outlook template file.
Internet Explorer open “oft” directly without prompting and show the source code of the file.
add to your apache2.conf file following
AddType application/octet-stream .oft oft
Check your apache conf file that is allowed to use htaccess file
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
we need two mods, rewrite and headers, very often rewrite is enable, headers not so often. When you not have enable headers you will get a 500 server error from Apache.
enable headers with
a2enmod headers
apachectl restart
place your .htaccess file in your www data folder /var/www/
You need following content, this works with all other extension that you will be force to download
<FilesMatch “\.(.oft|OFT)$”>
ForceType application/octet-stream
Header set Content-Disposition attachment
</FilesMatch>
That´s it
Org post see here
https://community.letsencrypt.org/t/getting-wildcard-certificates-with-certbot/56285
Reqeuirement access to dns records of the domain
wget https://dl.eff.org/certbot-auto
chmod a+x certbot-auto./certbot-auto certonly –manual -d *.domain.example -d example.domain –preferred-challenges dns-01 –server https://acme-v02.api.letsencrypt.org/directory
You will be prompted to add two txt records to your dns server, you should be able to do this.
that´s all
Adventures in code and reverse engineering
I have no problem with MSI file downloads. They are as simple as running an EXE. However, for reasons unknown, a lot of people don’t seem to like or understand downloading and running an MSI file; they feel more comfortable with EXEs. Visual Studio Setup projects turn your application into an MSI and a setup.exe file, which is inconvenient for distribution as generally online we want to provide the user with a single file download. Luckily there is a simple and free solution at hand in the guise of a quirky and little-known application included even as late as the Windows 7 base distribution called IExpress. This tool was originally created to enable branded deployments of Internet Explorer 6 (shocking, I know), but we can subvert it quite easily to our needs.
View original post 430 more words
Check your server with this powershell command
Get-HealthReport servername | where { $_.state -eq “Offline”}
now you should see your imap proxy is offline
bring back to life with
Set-ServerComponentState -Identity servername-Component IMAPProxy -State Active -Requester HealthAPI
found here
See Microsoft KB
More information about troubleshoot imap
https://technet.microsoft.com/en-us/library/ms.exch.scom.imap%28v=exchg.150%29.aspx
Ubuntu 16.04 is sometimes wtf.
How to escape this crazy error?
Preconfiguring packages …
Setting up systemd (229-4ubuntu21.1) …
Can’t locate Debian/AdduserCommon.pm in @INC (you may need to install the Debian::AdduserCommon module) (@INC contains: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.22.1 /usr/local/share/perl/5.22.1 /usr/lib/x86_64-linux-gnu/perl5/5.22 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl/5.22 /usr/share/perl/5.22 /usr/local/lib/site_perl /usr/lib/x86_64-linux-gnu/perl-base .) at /usr/sbin/addgroup line 34.
BEGIN failed–compilation aborted at /usr/sbin/addgroup line 34.
dpkg: error processing package systemd (–configure):
subprocess installed post-installation script returned error exit status 2
Errors were encountered while processing:
systemd
E: Sub-process /usr/bin/dpkg returned an error code (1)
Use apt-file search AdduserCommon.pm on another Ubuntu VM. APT-File install separately on the maschine. So you can look which packet the file belongs to.
apt-file search AdduserCommon.pm
adduser: /usr/share/perl5/Debian/AdduserCommon.pm
now we reinstall the package adduser
apt-get –reinstall install adduser
Antoher way is copy the whole folder /usr/share/perl5/ from the working vm to the broken vm.
Challenge: Employee want to create a contact object in active directory ou, to manage it selfs. So they can add and remove external e-mail address on his manage distribution groups.
You need some powershell commands for this.
Most commands found here, thanks to paul for his great blog post.
https://practical365.com/exchange-server/exchange-server-role-based-access-control-in-action/
Get-ManagementRoleEntry “Mail Recipients\*” | Select Name
Get-ManagementRoleEntry “View-Only Recipients\*” | Select Name
New-ManagementRole -Parent “Mail Recipients” -Name “Custom Role – Mail Contacts”
New-ManagementRole -Parent “Mail Recipient Creation” -Name “Custom Role – Mail Contacts Creation”
Get-ManagementRoleEntry “Custom Role – Mail Contacts\*” | Where {$_.Name -notlike “*MailContact”} | Remove-ManagementRoleEntry
Get-ManagementRoleEntry “Custom Role – Mail Contacts Creation\*” | Where {$_.Name -notlike “*MailContact”} | Remove-ManagementRoleEntry
Get-ManagementRoleEntry “Custom Role – Mail Contacts\*”
Get-ManagementRoleEntry “Custom Role – Mail Contacts Creation\*”
New-ManagementRole -Parent “View-Only Recipients” -Name “Custom Role – View-Only Recipients”
Get-ManagementRoleEntry “Custom Role – View-Only Recipients\*” | Where {$_.Name -notlike “*MailContact”} | Remove-ManagementRoleEntry
Add-ManagementRoleEntry “Custom Role – View-Only Recipients\Get-OrganizationalUnit”
Add-ManagementRoleEntry “Custom Role – View-Only Recipients\Get-Recipient”
Add-ManagementRoleEntry “Custom Role – View-Only Recipients\Get-Contact”
Get-ManagementRoleEntry “Custom Role – View-Only Recipients\*”
New-RoleGroup –Name “Contact Editor” –Roles “Custom Role – View-Only Recipients”, “Custom Role – Mail Contacts”, “Custom Role – Mail Contacts Creation”