Re: [qmailtoaster] Rocky 9 Migration

2024-02-23 Thread Quinn Comendant
On 23 Feb 2024, at 9:10, Gary Bowling wrote: LoadModule php5\_module modules/libphp5.so On my Rocky 9 box, this file does not exist and I cannot find that it is even suppose to exist. But I'm not sure how php is suppose to work on Apache without it. Hi Gary, Glad you worked it

Re: [qmailtoaster] Rocky 9 Migration

2024-02-23 Thread Remo Mattei
Glad it’s working now. -- Sent from iPhone > On venerdì, feb 23, 2024 at 09:15, Gary Bowling (mailto:g...@gbco.us)> wrote: > > > > > > Hahaha, Just as I was about to do this... I found the problem. > > > Thanks to Philip, who replied offline with a copy of his php.conf file. > > > > > > > > I

[qmailtoaster] Rocky 9 Migration continued - Systemd

2024-02-23 Thread Gary Bowling
Now that I have my web interfaces working, my next question is these messages I get in the log files. Over and over again I get these because of qmail and vusaged being installed in /etc/rc.d/init.d/ Is there anyway to stop these?

Re: [qmailtoaster] Rocky 9 Migration

2024-02-23 Thread Gary Bowling
I usually like to work through these type of things to learn what is going on. I generally learn a few things in the process. However, I'm just about stumped on this one. I'm going to take a lunch break and when I come back, I think I'm going

Re: [qmailtoaster] Rocky 9 Migration

2024-02-23 Thread Gary Bowling
Here you go Eric..  The 96.46.15.70 address was added as that's my home IP where I'm working from.  RewriteEngine On  RewriteCond %{HTTPS} !=on  RewriteRule ^/?(.*) https://%{SERVER_NAME}/$1 [R,L]  Define aclnet "192.168.2.0/24

Re: [qmailtoaster] Rocky 9 Migration

2024-02-23 Thread Eric Broch
I'm not sure why you would migrate php.conf? This is not a part of the qmt migration. On 2/23/2024 2:39 PM, Gary Bowling wrote: Yes, and very importantly for apache, you to have to match the "php files" and send them to a handler in a conf file with the FilesMatch and SetHandler

Re: [qmailtoaster] Rocky 9 Migration

2024-02-23 Thread Gary Bowling
Hahaha, Just as I was about to do this... I found the problem. Thanks to Philip, who replied offline with a copy of his php.conf file. I was going down the right path trying to figure out why php wasn't working, including asking questions

Re: [qmailtoaster] Rocky 9 Migration

2024-02-23 Thread Gary Bowling
Yes, and very importantly for apache, you to have to match the "php files" and send them to a handler in a conf file with the FilesMatch and SetHandler directives. That's actually the piece that got overwritten when I sync'd over my configs from my old

[qmailtoaster] Rocky 9 Migration - Moving Squirrelmail abooks to Roundcube

2024-02-23 Thread Gary Bowling
Anyone have a script for moving Squirrelmail address books to the Roundcube database? Thanks, gb -- Gary Bowling The Moderns on Spotify

Re: [qmailtoaster] Rocky 9 Migration

2024-02-23 Thread Remo Mattei
Why don’t you use Aliases? Remo > On Feb 23, 2024, at 15:20, Gary Bowling wrote: > > > > Yea, it was really an accident. Your migration plans don't migrate web > configs. But on my server I have many virtualhosts for different clients. > Many of my clients originally wanted their web

Re: [qmailtoaster] Rocky 9 Migration - Moving Squirrelmail abooks to Roundcube

2024-02-23 Thread Eric Broch
This might work GitHub - WebuddhaInc/squirrelmail-to-roundcube: Migrate SquirrelMail Address Book to Roundcube Contacts On 2/23/2024 4:39 PM, Gary Bowling wrote: Anyone have a script for moving Squirrelmail address books to the

Re: [qmailtoaster] Rocky 9 Migration

2024-02-23 Thread Gary Bowling
Yea, it was really an accident. Your migration plans don't migrate web configs. But on my server I have many virtualhosts for different clients. Many of my clients originally wanted their web mail on their own domain, not on a single shared domain.

Re: [qmailtoaster] Rocky 9 Migration

2024-02-23 Thread Gary Bowling
Question. On your Rocky 9 boxes, do you have a libphp5.so module? Listed in the /etc/httpd/conf.d/php.conf file as.   LoadModule php5_module modules/libphp5.so On my Rocky 9 box, this file does not exist and I cannot find

Re: [qmailtoaster] Rocky 9 Migration

2024-02-23 Thread Remo Mattei
The Apache statement is if available load it. I will check not sure I do. -- Sent from iPhone > On venerdì, feb 23, 2024 at 07:11, Gary Bowling (mailto:g...@gbco.us)> wrote: > > > > > > Question. On your Rocky 9 boxes, do you have a libphp5.so module? Listed in > the /etc/httpd/conf.d/php.conf

Re: [qmailtoaster] Rocky 9 Migration

2024-02-23 Thread Gary Bowling
Yes I know that. But in past version, it was required to properly serve out a php file. Without it the php file just gets served as a text file and not executed as php code. I discovered my server was not executing index.php. After adding a