Maine Bureau of Insurance issues warning about scam involving roof replacement program
Advertisement
MOVE TO THE NEW LOCATION AT RIVERFRONT PLAZA IN WESTBROOK. AND A NEW SCAM TO TELL YOU ABOUT THIS AFTERNOON — THE BUREAU OF INSURANCE — ALERTING MAINERS TO BE AWARE OF FAKE WEBSITES CLAIMING TO BE THE NEW “FORTIFY MAINE HOMES” ROOF REPLACEMENT PROGRAM. YOU SHOULDN’T CLICK ON OR TRUST ANY WEBSITES NOT HOSTED BY MAINE DOT GOV THAT OFFER TO CHECK YOUR HOME’S ELIGIBILITY OR OFFER INFORMATION ABOUT THE PROJECT. APPLICATIONS FOR THE áREAL PROGRAM AREN’T BEI
Advertisement
Maine Bureau of Insurance issues warning about scam involving roof replacement program
Updated: 7:25 PM EDT Apr 9, 2026
Editorial Standards ⓘ
Advertisement
The Maine Bureau of Insurance is warning people about fake websites that claim to represent its new Fortify Maine Homes roof replacement program.Officials said Mainers should avoid any websites not hosted by www.maine.gov that offer to check eligibility or provide information about the Fortify Maine Homes Program because they are not affiliated with the program or the Bureau of Insurance.The Bureau of Insurance said its website, www.maine.gov/insurance/home, is the only website where Maine consumers can access information about the Fortify Maine Homes Program. People can click the “Fortify Maine Homes Program” button at the top of the Bureau of Insurance homepage or click here to find that information.Officials said applications for the Fortify Maine Homes Program are not currently being accepted. People can check the Fortify Maine Homes website for updates on the program and the application process.
GARDINER, Maine —
The Maine Bureau of Insurance is warning people about fake websites that claim to represent its new Fortify Maine Homes roof replacement program.
Advertisement
Officials said Mainers should avoid any websites not hosted by www.maine.gov that offer to check eligibility or provide information about the Fortify Maine Homes Program because they are not affiliated with the program or the Bureau of Insurance.
The Bureau of Insurance said its website, www.maine.gov/insurance/home, is the only website where Maine consumers can access information about the Fortify Maine Homes Program. People can click the “Fortify Maine Homes Program” button at the top of the Bureau of Insurance homepage or click here to find that information.
Officials said applications for the Fortify Maine Homes Program are not currently being accepted. People can check the Fortify Maine Homes website for updates on the program and the application process.
Advertisement
Advertisement
`;
}
function refreshWeatherIframe(containerId) {
var iframeId = ‘weather-iframe-‘ + containerId;
var iframe = document.getElementById(iframeId);
if (iframe && iframe.src) {
var originalSrc = iframe.src;
iframe.src = originalSrc + (originalSrc.indexOf(‘?’) > -1 ? ‘&’ : ‘?’) + ‘t=” + Date.now();
}
}
function initializeWeatherBox(container) {
var containerId = container.getAttribute(“data-container-id’);
var isWeatherBoxV2 = containerId === ‘home-weather-v2’;
function switchWeatherTab(tabName, clickedElement) {
container.querySelectorAll(‘[data-tab-id]’).forEach(function(tab) {
tab.classList.remove(‘open’);
tab.setAttribute(‘aria-selected’, ‘false’);
});
var targetContent = container.querySelector(‘[data-content-id=”‘ + tabName + ‘”]’);
if (targetContent) {
targetContent.style.display = ‘block’;
targetContent.removeAttribute(‘hidden’);
}
}
function loadWeatherData() {
// If weather data is already being loaded, wait for it
if (window.weatherDataPromise) {
window.weatherDataPromise.then(function(data) {
if (data && data.data) {
var weatherContainer = container.closest(‘.weather-box-container’);
if (weatherContainer) {
weatherContainer.style.display = ‘flex’;
updateCurrentWeather(data.data);
updateForecastTabs(data.data);
updateWeatherAlertsBar(data.data);
}
}
});
return;
}
var location = { zip: window.DEFAULT_ZIPCODE };
try {
var storedLocations = localStorage.getItem(‘hrst.zip.history’);
if (storedLocations) {
var locations = JSON.parse(storedLocations);
if (locations && locations.length > 0) {
location = locations[0];
}
}
} catch (e) {}
Advertisement
var apiUrl = (window.DEWY_HOSTNAME || ”) + ‘/api/v1/weather/full/’ + location.zip;
if (window.fetch) {
window.weatherDataPromise = fetch(apiUrl)
.then(function(response) { return response.json(); })
.then(function(data) {
if (data && data.data) {
var article = container.closest(‘.article–wrapper’);
var weatherContainer = container.closest(‘.weather-box-container’);
if (weatherContainer) {
weatherContainer.style.display = ‘flex’;
updateCurrentWeather(data.data);
updateForecastTabs(data.data);
updateWeatherAlertsBar(data.data);
}
return data;
}
})
.catch(function(error) {
console.error(‘Error loading weather:’, error);
// Reset to unknown background on error
updateWeatherBackground(‘unknown’);
});
}
}
function updateWeatherAlertsBar(weatherData) {
var weatherWatchHeader = container.querySelector(‘.weather-watch-header’);
if (!weatherWatchHeader) return;
var weatherWatchText = weatherWatchHeader.querySelector(‘.weather-watch-text’);
var weatherWatchLink = weatherWatchHeader.querySelector(‘.weather-watch-link’);
if (weatherData.alerts_count > 0) {
weatherWatchHeader.className=”weather-watch-header has-alerts”;
if (weatherWatchText) {
weatherWatchText.textContent = `Weather Alerts (${weatherData.alerts_count})`;
}
if (weatherWatchLink) {
if (!weatherWatchLink.getAttribute(‘data-initial-href’)) {
weatherWatchLink.setAttribute(‘data-initial-href’, weatherWatchLink.getAttribute(‘href’));
weatherWatchLink.setAttribute(‘data-initial-onclick’, weatherWatchLink.getAttribute(‘onclick’) || ”);
}
weatherWatchLink.setAttribute(‘href’, “https://www.wmtw.com/alerts”);
weatherWatchLink.setAttribute(‘onclick’, “return handleWeatherLinkClick(event, ‘click_alerts’, ‘click’, ‘mobile-weather’, “https://www.wmtw.com/alerts”);”);
}
} else {
weatherWatchHeader.className=”weather-watch-header”;
if (weatherWatchText) {
weatherWatchText.textContent = containerId === ‘home-weather-v2’ ? ‘Watch Latest Forecast’ : ‘Latest Forecast’;
}
if (weatherWatchLink) {
var initialHref = weatherWatchLink.getAttribute(‘data-initial-href’);
var initialOnclick = weatherWatchLink.getAttribute(‘data-initial-onclick’);
if (initialHref) {
weatherWatchLink.setAttribute(‘href’, initialHref);
}
if (initialOnclick) {
weatherWatchLink.setAttribute(‘onclick’, initialOnclick);
}
}
}
}
Advertisement
function updateCurrentWeather(weatherData) {
if (weatherData.current) {
var tempValue = weatherData.current.temp_f || ”;
var skyValue = weatherData.current.sky || ”;
var feelsLikeValue = weatherData.current.feels_like_f || weatherData.current.temp_f || ”;
var tempEl = container.querySelector(‘.weather-grid–current-temp-value’);
if (tempEl) {
tempEl.textContent = tempValue;
tempEl.setAttribute(‘aria-label’, tempValue + ‘ degrees Fahrenheit’);
}
var iconEl = container.querySelector(‘.weather-grid–current-icon’);
if (iconEl && weatherData.current.icon_name) {
iconEl.className=”weather-grid–current-icon weather-current-icon icon icon-weather-” + weatherData.current.icon_name;
}
var skyEl = container.querySelector(‘.weather-grid–sky’);
if (skyEl) {
skyEl.textContent = skyValue;
skyEl.setAttribute(‘aria-label’, ‘Current condition: ‘ + skyValue);
}
var feelsEl = container.querySelector(‘.weather-grid–feels’);
if (feelsEl) {
feelsEl.textContent = feelsLikeValue + ‘°F’;
feelsEl.setAttribute(‘aria-label’, feelsLikeValue + ‘ degrees Fahrenheit’);
}
Advertisement
var weatherContainer = container.querySelector(‘.weather-temp-container’);
if (weatherContainer) {
var summary = ‘Current temperature ‘ + tempValue + ‘ degrees Fahrenheit, ‘ +
skyValue + ‘, feels like ‘ + feelsLikeValue + ‘ degrees’;
weatherContainer.setAttribute(‘aria-label’, summary);
}
function updateForecastTabs(weatherData) {
var visibleItems = isWeatherBoxV2 ? 6 : 5;
if (weatherData.hourly) {
var hourlyContainer = container.querySelector(‘.weather-hourly-forecast’);
if (hourlyContainer) {
var html=””;
var maxHours = Math.min(visibleItems, weatherData.hourly.length);
Advertisement
for (var i = 0; i 0 ? currentIndex – 1 : tabs.length – 1;
tabs[prevIndex].focus();
break;
case ‘ArrowRight’:
e.preventDefault();
var nextIndex = currentIndex
`;
}
function refreshWeatherIframe(containerId) {
var iframeId = ‘weather-iframe-‘ + containerId;
var iframe = document.getElementById(iframeId);
if (iframe && iframe.src) {
var originalSrc = iframe.src;
iframe.src = originalSrc + (originalSrc.indexOf(‘?’) > -1 ? ‘&’ : ‘?’) + ‘t=” + Date.now();
}
}
function initializeWeatherBox(container) {
var containerId = container.getAttribute(“data-container-id’);
var isWeatherBoxV2 = containerId === ‘home-weather-v2’;
function switchWeatherTab(tabName, clickedElement) {
container.querySelectorAll(‘[data-tab-id]’).forEach(function(tab) {
tab.classList.remove(‘open’);
tab.setAttribute(‘aria-selected’, ‘false’);
});
var targetContent = container.querySelector(‘[data-content-id=”‘ + tabName + ‘”]’);
if (targetContent) {
targetContent.style.display = ‘block’;
targetContent.removeAttribute(‘hidden’);
}
}
function loadWeatherData() {
// If weather data is already being loaded, wait for it
if (window.weatherDataPromise) {
window.weatherDataPromise.then(function(data) {
if (data && data.data) {
var weatherContainer = container.closest(‘.weather-box-container’);
if (weatherContainer) {
weatherContainer.style.display = ‘flex’;
updateCurrentWeather(data.data);
updateForecastTabs(data.data);
updateWeatherAlertsBar(data.data);
}
}
});
return;
}
var location = { zip: window.DEFAULT_ZIPCODE };
Advertisement
try {
var storedLocations = localStorage.getItem(‘hrst.zip.history’);
if (storedLocations) {
var locations = JSON.parse(storedLocations);
if (locations && locations.length > 0) {
location = locations[0];
}
}
} catch (e) {}
var apiUrl = (window.DEWY_HOSTNAME || ”) + ‘/api/v1/weather/full/’ + location.zip;
if (window.fetch) {
window.weatherDataPromise = fetch(apiUrl)
.then(function(response) { return response.json(); })
.then(function(data) {
if (data && data.data) {
var article = container.closest(‘.article–wrapper’);
var weatherContainer = container.closest(‘.weather-box-container’);
if (weatherContainer) {
weatherContainer.style.display = ‘flex’;
updateCurrentWeather(data.data);
updateForecastTabs(data.data);
updateWeatherAlertsBar(data.data);
}
return data;
}
})
.catch(function(error) {
console.error(‘Error loading weather:’, error);
// Reset to unknown background on error
updateWeatherBackground(‘unknown’);
});
}
}
function updateWeatherAlertsBar(weatherData) {
var weatherWatchHeader = container.querySelector(‘.weather-watch-header’);
if (!weatherWatchHeader) return;
var weatherWatchText = weatherWatchHeader.querySelector(‘.weather-watch-text’);
var weatherWatchLink = weatherWatchHeader.querySelector(‘.weather-watch-link’);
Advertisement
if (weatherData.alerts_count > 0) {
weatherWatchHeader.className=”weather-watch-header has-alerts”;
if (weatherWatchText) {
weatherWatchText.textContent = `Weather Alerts (${weatherData.alerts_count})`;
}
if (weatherWatchLink) {
if (!weatherWatchLink.getAttribute(‘data-initial-href’)) {
weatherWatchLink.setAttribute(‘data-initial-href’, weatherWatchLink.getAttribute(‘href’));
weatherWatchLink.setAttribute(‘data-initial-onclick’, weatherWatchLink.getAttribute(‘onclick’) || ”);
}
weatherWatchLink.setAttribute(‘href’, “https://www.wmtw.com/alerts”);
weatherWatchLink.setAttribute(‘onclick’, “return handleWeatherLinkClick(event, ‘click_alerts’, ‘click’, ‘sidelist-weather’, “https://www.wmtw.com/alerts”);”);
}
} else {
weatherWatchHeader.className=”weather-watch-header”;
if (weatherWatchText) {
weatherWatchText.textContent = containerId === ‘home-weather-v2’ ? ‘Watch Latest Forecast’ : ‘Latest Forecast’;
}
if (weatherWatchLink) {
var initialHref = weatherWatchLink.getAttribute(‘data-initial-href’);
var initialOnclick = weatherWatchLink.getAttribute(‘data-initial-onclick’);
if (initialHref) {
weatherWatchLink.setAttribute(‘href’, initialHref);
}
if (initialOnclick) {
weatherWatchLink.setAttribute(‘onclick’, initialOnclick);
}
}
}
}
function updateCurrentWeather(weatherData) {
if (weatherData.current) {
var tempValue = weatherData.current.temp_f || ”;
var skyValue = weatherData.current.sky || ”;
var feelsLikeValue = weatherData.current.feels_like_f || weatherData.current.temp_f || ”;
var tempEl = container.querySelector(‘.weather-grid–current-temp-value’);
if (tempEl) {
tempEl.textContent = tempValue;
tempEl.setAttribute(‘aria-label’, tempValue + ‘ degrees Fahrenheit’);
}
var iconEl = container.querySelector(‘.weather-grid–current-icon’);
if (iconEl && weatherData.current.icon_name) {
iconEl.className=”weather-grid–current-icon weather-current-icon icon icon-weather-” + weatherData.current.icon_name;
}
var skyEl = container.querySelector(‘.weather-grid–sky’);
if (skyEl) {
skyEl.textContent = skyValue;
skyEl.setAttribute(‘aria-label’, ‘Current condition: ‘ + skyValue);
}
Advertisement
var feelsEl = container.querySelector(‘.weather-grid–feels’);
if (feelsEl) {
feelsEl.textContent = feelsLikeValue + ‘°F’;
feelsEl.setAttribute(‘aria-label’, feelsLikeValue + ‘ degrees Fahrenheit’);
}
var weatherContainer = container.querySelector(‘.weather-temp-container’);
if (weatherContainer) {
var summary = ‘Current temperature ‘ + tempValue + ‘ degrees Fahrenheit, ‘ +
skyValue + ‘, feels like ‘ + feelsLikeValue + ‘ degrees’;
weatherContainer.setAttribute(‘aria-label’, summary);
}
function updateForecastTabs(weatherData) {
var visibleItems = isWeatherBoxV2 ? 6 : 5;
Advertisement
if (weatherData.hourly) {
var hourlyContainer = container.querySelector(‘.weather-hourly-forecast’);
if (hourlyContainer) {
var html=””;
var maxHours = Math.min(visibleItems, weatherData.hourly.length);
for (var i = 0; i 0 ? currentIndex – 1 : tabs.length – 1;
tabs[prevIndex].focus();
break;
case ‘ArrowRight’:
e.preventDefault();
var nextIndex = currentIndex
Gorham junior pitcher Hunter Finck committed to Alabama in December and is ready to show Maine high school opponents his best stuff. (Shawn Patrick Ouellette/Staff Photographer)
Purchase this image
It seems every season there’s a southern Maine pitcher or two headed to big-time college baseball.
Meet Hunter Finck, a Gorham High junior and the newest mound star.
Casual fans of Class A South baseball might be wondering, “Hunter who?” After all, Finck threw just one inning for the Rams as a sophomore because of shoulder tightness. It was his Gorham teammate, Wyatt Nadeau, now at Vanderbilt, who was getting the headlines.
Advertisement
But, “when you say Hunter, everyone around here knows who you’re talking about,” said Gorham coach Ed Smith.
For several reasons.
Finck, 17, has been a standout for several years, always playing up an age group or two at the local level. Since he was 15, he’s pitched for Atlanta-based Team Elite Baseball at premier national showcase tournaments. On Dec. 8, Finck, a powerfully built 6-foot-1, 205-pound right-hander, committed to Alabama, a rising program in the power-packed Southeastern Conference.
Throughout the 2025 summer, playing for both Team Elite and Portland-based Maine Lightning Baseball, Finck built his arm strength back up to where it had been in 2024, when his fastball first crossed the 90 mph threshold. But it wasn’t until early October when Finck was ready to show his true self.
Advertisement
In back-to-back tournaments in Florida with Team Elite’s top team, Finck impressed. On the second weekend, competing in the Perfect Game WWBA World Championship in Jupiter, Florida, his fastball was up to 93 mph, his curveball was sharp, and a developing changeup was effective.
“It really came to life for Hunter in the fall,” said Brooke Richards, Team Elite’s national high school director. Richards said the college recruiters who rightfully saw question marks around Finck because of his limited track record “were probably scrambling at the same time.”
Alabama coach Rob Vaughn and his staff made an early impression.
Two months later, Finck was touring Alabama’s campus in Tuscaloosa.
Advertisement
On the plane ride home, Finck said he knew he’d found the right spot, and he committed before the plane landed in New England.
Finck would be the first Mainer to pitch for Alabama, but recruiting pitchers from Maine is not new to Vaughn. As the head coach at Maryland (2018-23), Vaughn coached York’s Trevor Labonte for three seasons. Greely’s Zach Johnston originally committed to Maryland before opting to attend Wake Forest.
Finck said there were other schools from the Power 4 conferences (SEC, Big Ten, Big 12, ACC) that pursued him.
“I looked at all of them seriously. I thought all of them were great, but I just really wanted to go to Alabama, especially after I saw it,” he said. “I feel like they really wanted me. I have a very good relationship with all of their coaches, so that’s one of the main reasons.”
Advertisement
” data-large-file=”https://www.pressherald.com/wp-content/uploads/sites/4/2026/05/43576187_20260505_GorhChev_1.jpg?w=780″ height=”748″ width=”1024″ alt=”” class=”wp-image-7637645″ srcset=”https://www.pressherald.com/wp-content/uploads/sites/4/2026/05/43576187_20260505_GorhChev_1.jpg 3000w, https://www.pressherald.com/wp-content/uploads/sites/4/2026/05/43576187_20260505_GorhChev_1.jpg?resize=300,219 300w, https://www.pressherald.com/wp-content/uploads/sites/4/2026/05/43576187_20260505_GorhChev_1.jpg?resize=768,561 768w, https://www.pressherald.com/wp-content/uploads/sites/4/2026/05/43576187_20260505_GorhChev_1.jpg?resize=1024,748 1024w, https://www.pressherald.com/wp-content/uploads/sites/4/2026/05/43576187_20260505_GorhChev_1.jpg?resize=1536,1122 1536w, https://www.pressherald.com/wp-content/uploads/sites/4/2026/05/43576187_20260505_GorhChev_1.jpg?resize=2048,1496 2048w, https://www.pressherald.com/wp-content/uploads/sites/4/2026/05/43576187_20260505_GorhChev_1.jpg?resize=1200,876 1200w, https://www.pressherald.com/wp-content/uploads/sites/4/2026/05/43576187_20260505_GorhChev_1.jpg?resize=2000,1461 2000w, https://www.pressherald.com/wp-content/uploads/sites/4/2026/05/43576187_20260505_GorhChev_1.jpg?resize=780,570 780w, https://www.pressherald.com/wp-content/uploads/sites/4/2026/05/43576187_20260505_GorhChev_1.jpg?resize=400,292 400w” sizes=”(max-width: 1024px) 100vw, 1024px”/>Gorham’s Hunter Finck delivers a pitch during the Rams’ 8-0 win over Cheverus on Tuesday in Gorham. (Derek Davis/Staff Photographer)
Purchase this image
WHAT’S SPECIAL ABOUT HUNTER FINCK?
Gorham senior Miles Brenner is a strong pitcher in his own right. He’s committed to play at Wheaton College, annually among the top NCAA Division III programs in New England.
“What stands out about Hunter is obviously his velocity, his power,” Brenner said. “But it’s also his mindset. He’s always working, always trying to get better.”
Smith, Gorham’s coach, points to several factors that predict future success for Finck: His progression has always “been ahead of the curve;” he’s been a hard thrower from an early age who has the strong frame to support increased velocity; and “his compete level is off the charts.”
Smith and Richards both describe Finck as having a commanding presence and in-control demeanor on the mound.
“For a kid who doesn’t have a lot of innings under his belt, his composure on the mound is very good. It’s very professional,” Richards said. “Pitching-wise, it’s hard stuff. He attacks. It’s a fastball with life. He has good feel for three pitches that typically he’s very good commanding. When he misses, it’s not by much.”
Advertisement
SO FAR THIS SEASON
Though he has a bright future ahead, Finck is focused on Gorham baseball this spring. In his first start, he threw four innings of one-hit ball, striking out eight in an 8-1 season-opening win against Sanford at Goodall Park.
Purchase this image
On Tuesday, he threw a two-hitter in an 8-0 win against previously unbeaten Cheverus. It was the first time he’d pitched seven innings since his freshman year. Standing tall, with a strong power stride, Finck started the game with a 93 mph fastball and was still throwing 90 in the fourth inning. Through five innings, he allowed two singles, and with sharp command of his fastball and curveball, he did not get to a three-ball count. A few pitches got away from Finck in the sixth and seventh after Gorham scored its eighth run (on a Finck RBI single), but with help from an errorless defense, he worked around a walk in each inning and finished his shutout with nine strikeouts.
The Rams have a deep pitching staff. In addition to Finck and Brenner, senior Wyatt Washburn is another future college pitcher — he’s headed to Colby College. Add in Nadeau and Jack Karlonas (Husson) from last year’s Gorham team, and Finck has benefited from being surrounded by older teammates who can offer advice, give support, and engage in mature conversations about the craft of pitching.
Of Nadeau, a 6-foot-6 right-hander who has drawn regular starts in his first season at Vanderbilt, Finck said, “he helped me to see what it was like to be at that level and show me everything that goes with it. … He showed me what the standard is.”
Advertisement
Washburn said of Finck, “He’s just one of those guys that loves the game of baseball and wants to be doing it all the time. It’s the love of the game and his work ethic.”
With Gorham having plenty of quality pitching, Finck will not be overtaxed. Smith has said he expects to stick to a three-starter rotation. That could also ease the pressure of being “the Alabama kid,” as Smith said he heard opposing players call Finck during the preseason.
The way Finck sees it, his choice of college doesn’t change anything in the present. Opponents might think of him as the Alabama kid, but he’s pitching for the Gorham Rams, always trying to compete and play at his best to help his team win.
“So, nerves are the same,” he said. “Pressure’s the same, in my opinion. Just with a label on it.”
John Baldacciserved as Maine’s governor from 2003 to 2011. He led the effort to establish the state’s community college system in 2003. John McKernan was Maine’s 71st governor from 1987 to 1995. He has served as chair of The Foundation for Maine’s Community Colleges since its inception in 2010.
Making the Maine Free College Scholarship permanent for the high school graduates of the Class of 2026 and beyond delivers on a promise the two of us made decades ago — and maintained since — to keep a community college education affordable to as many Mainers as possible.
Now Gov. Janet Mills is working to secure that same promise for future generations, by making permanent the Maine Free College Scholarship. Her plan invests $10 million in state funds annually to guarantee recent high school graduates in Maine a tuition-free community college education. It is a sound and profound decision.
If passed by legislators in Augusta, the investment will pay off for not just for students and their families, but for the state’s coffers in the form of more tax revenue, for local businesses in the form of more skilled labor available and for communities that will have more vibrant, engaged and employed residents.
Advertisement
Already, more than 23,000 Maine Free College Scholarship-eligible students have participated since the last-dollar scholarship program began in 2022.
The two of us have worked tirelessly, and across party lines, over the past quarter century to evolve the community colleges. As public leaders, we are partners in helping the state’s public two-year colleges find and secure the resources and tools they need to fulfill their state-ordered mandate of creating the educated, skilled and adaptable workforce Maine needs to fill jobs in Maine’s economy.
That was the vision when Gov. Baldacci led the effort to evolve what were then vocational technical colleges into a true community college system that expanded its academic offerings and offered an affordable pathway to four-year colleges.
At the same time, Gov. McKernan started his tenure as chairman of The Foundation for Maine’s Community Colleges, leading fundraising and making connections to strengthen the colleges. To date, the Foundation has raised over $147 million in support of the colleges’ programs, infrastructure, and scholarships — and the Maine Free College Scholarship will allow those philanthropic and grant dollars to stretch even further.
As a state, we committed long ago to making local, affordable access to quality postsecondary education a priority in Maine. Despite having the lowest tuition in New England, affordability remains one of the greatest barriers to higher education for Mainers. Making the Maine Free College Scholarship permanent is the logical, practical and necessary next step to true affordability.
Advertisement
We now applaud and welcome Gov. Mills into our mutual efforts to keep growing and strengthening Maine’s community colleges and making sure they remain affordable and accessible to the largest number of Mainers possible.
We urge today’s lawmakers to support this economic engine for Maine, giving young people the opportunity to pursue a tuition-free degree — while knowing their state believes in them and their potential.