Allow csv export of IP Addresses for easy export to new server when setting up the configuration.
Allow for easy export of various values in Plesk as CSV values. In my case I am generating a yaml file for the server that I am migrating my Plesk server to that contains a lot of IP addresses. Plesk's migration extension is good, but it complains about the lack of available IP addresses on the new server, IP addresses we may not want active/live until the cutover from dev to prod.
I can copy/paste line by line so this is the lowest of low priorities for me.
At least three easy solutions already exist to export the list of IP addresses:
1: As CSV:
# plesk db -Ne "SELECT ip_address FROM psa.IP_Addresses INTO OUTFILE '/tmp/ip_addresses.csv' FIELDS TERMINATED BY ',' ENCLOSED BY '\"' LINES TERMINATED BY '\n';"
2: As XML:
# plesk bin ipmanage -xi
3: As a formatted text list:
# plesk bin ipmanage -l
-- PD