In our email notifications, the links in the footer to acknowledge alarm, pause, etc. redirect to the mobile version of the site (e.g. https://prtgserver.url/m/...)
I have reset the email notify template by saving it with a single * character, but the code is still the same. Relevant bits of code in the HTML template below. Is this intentional? I would expect the web server part of PRTG to redirect to a mobile site automatically if it sees a mobile browser user-agent, and the links in the base notify template should point to the default site header.
<td style="padding:2px 4px 4px 4px;">Sensor Actions</td> <td style="padding:2px 4px 4px 0px;"> <a href="%homem/scannow.htm?id=%sensorid&action=0&targeturl=/m/sensor.htm?id=%sensorid">Check Now</a><br> <a href="%homem/acknowledgealarm.htm?id=%sensorid&ackmsg=Acknowledged+via+email&targeturl=/m/sensor.htm?id=%sensorid">Acknowledge Alarm...</a><br> <a href="%homem/pause.htm?id=%sensorid&action=0&targeturl=/m/sensor.htm?id=%sensorid">Pause</a><br> <a href="%homem/pauseobjectfor.htm?id=%sensorid&duration=5&targeturl=/m/sensor.htm?id=%sensorid">Pause for 5 minutes</a><br> <a href="%homem/pauseobjectfor.htm?id=%sensorid&duration=60&targeturl=/m/sensor.htm?id=%sensorid">Pause for 60 minutes</a><br> <a href="%homem/pauseobjectfor.htm?id=%sensorid&duration=1440&targeturl=/m/sensor.htm?id=%sensorid">Pause for 24 hours</a><br> <a href="%homem/pause.htm?id=%sensorid&action=1&targeturl=/m/sensor.htm?id=%sensorid">Resume</a> </td> <td style="padding:2px 4px 4px 0px;" bgcolor="#dddddd"> </td>
Add comment